Home >Backend Development >PHP Tutorial >PHP time zone conversion conversion function_PHP tutorial

PHP time zone conversion conversion function_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:41:32927browse

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...
Statement:
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