如何使用 DateTime 类在 PHP 中的时区之间进行转换?

How to convert between time zones in PHP using the DateTime class?(如何使用 DateTime 类在 PHP 中的时区之间进行转换?)
本文介绍了如何使用 DateTime 类在 PHP 中的时区之间进行转换?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将当前时间转换为 UTC 和 UTC 转换为当前时区.

I am trying to convert time between current time to UTC and UTC to current time zone.

这是我所做的:

$schedule_date = new DateTime($triggerOn, new DateTimeZone('UTC') );
$triggerOn =  $schedule_date->format('Y-m-d H:i:s');

echo $triggerOn;

输出值不会改变,唯一改变的是格式.

The output value does not change the only thing that changes in format.

字符串 $triggerOn 是根据 America/Los_Angeles 时区生成的

the string $triggerOn was generated based on America/Los_Angeles timezone

这是我的字符串前后的样子:

This is how my string looks like before and after:

BEFORE    04/01/2013 03:08 PM
AFTER     2013-04-01 15:08:00

所以这里的问题是 DateTime 没有转换为 UTC.

So the issue here is that DateTime does not convert to UTC.

推荐答案

你要找的是这个:

$triggerOn = '04/01/2013 03:08 PM';
$user_tz = 'America/Los_Angeles';

echo $triggerOn; // echoes 04/01/2013 03:08 PM

$schedule_date = new DateTime($triggerOn, new DateTimeZone($user_tz) );
$schedule_date->setTimeZone(new DateTimeZone('UTC'));
$triggerOn =  $schedule_date->format('Y-m-d H:i:s');

echo $triggerOn; // echoes 2013-04-01 22:08:00

这篇关于如何使用 DateTime 类在 PHP 中的时区之间进行转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)