PHP time zone conversion conversion function_PHP tutorial

WBOY
Release: 2016-07-13 10:41:32
Original
908 people have browsed it

Copy code The code is as follows:

/*
* Time zone conversion
*/

function toTimeZone($src, $from_tz = 'America/Denver', $to_tz = 'Asia/Shanghai', $fm = 'Y-m-d H:i:s') {
$datetime = new DateTime($src, new DateTimeZone($from_tz));
$datetime->setTimezone(new DateTimeZone($to_tz));
return $datetime->format($fm);
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/676908.htmlTechArticleCopy code The code is as follows: /* * Time zone conversion*/ function toTimeZone($src, $from_tz = 'America/ Denver', $to_tz = 'Asia/Shanghai', $fm = 'Y-m-d H:i:s') { $datetime = new DateTime($sr...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template