php gmt格式文本转换成时间格式,如何将php日期格式转换为GMT,反之亦然?

虽然gmdate功能可用.如果您使用的是

PHP 5.2或更高版本,请考虑使用

DateTime对象.

这是切换到GMT的代码

$date = new DateTime();

$date->setTimezone(new DateTimeZone('GMT'));

并返回默认时区…

$date = new DateTime('2011-01-01', new DateTimeZone('GMT'));

$date->setTimezone(new DateTimeZone(date_default_timezone_get()));

使用DateTime对象可以创建日期时间,就像过程函数一样,除了保留对实例的引用.

例如

// Get a reference to Christmas of 2011, at lunch time.

$date = new DateTime('2011-12-25 13:00:00');

// Print the date for people to see, in whatever format we specify.

echo $date->format('D jS M y');

// Change the timezone to GMT.

$date->setTimezone(new DateTimeZone('GMT'));

// Now print the date/time it would in the GMT timezone

// as opposed to the default timezone it was created with.

echo $date->format('Y-m-d H:i:s');

// Just to show of some more, get the previous Sunday

$date->modify('previous Sunday');

你可以使用很多函数,它们比程序函数更具可读性.

从时区转换为GMT的明确示例

$melbourne = new DateTimeZone('Australia/Melbourne');

$gmt = new DateTimeZone('GMT');

$date = new DateTime('2011-12-25 00:00:00', $melbourne);

$date->setTimezone($gmt);

echo $date->format('Y-m-d H:i:s');

// Output: 2011-12-24 13:00:00

// At midnight on Christmas eve in Melbourne it will be 1pm on Christmas Eve GMT.

echo '
';

// Convert it back to Australia/Melbourne

$date->setTimezone($melbourne);

echo $date->format('Y-m-d H:i:s');

使用您的亚洲/加尔各答到美国/纽约

date_default_timezone_set('Asia/Kolkata');

$date = new DateTime('2011-03-28 13:00:00');

$date->setTimezone(new DateTimeZone('America/New_York'));

echo $date->format("Y-m-d H:i:s");

//Outputs: 2011-03-28 03:30:00

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值