当前位置:Gxlcms > PHP教程 > php时区转换转换函数

php时区转换转换函数

时间:2021-07-01 10:21:17 帮助过:6人阅读

代码如下:
/*
 * 时区转换
 */

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);
}

人气教程排行