php时区转换函数示例
时间:2021-07-01 10:21:17
帮助过:13人阅读
- /*
- * 时区转换
- */
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);
- }
|