美国洛杉矶时间转 格林威治时间

来源:互联网 发布:免费手机图文转换软件 编辑:程序博客网 时间:2024/04/20 18:19
/**美国洛杉矶时间转 格林威治时间*/function toTimeZone($src, $from_tz = 'America/Los_Angeles', $to_tz = 'Etc/GMT', $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);  }  echo toTimeZone('2017-05-23 23:55:20'); //2017-05-24 06:55:20
阅读全文
0 0