php – 将Twitter-API日期时间更改为时间戳的最佳方法

前端之家收集整理的这篇文章主要介绍了php – 将Twitter-API日期时间更改为时间戳的最佳方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Twitter API发送created_at日期时间如下:
"created_at": "Mon Jul 25 05:51:34 +0000 2011",

在时间戳和我当地时区(欧洲/苏黎世)转换它们的最佳方法是什么?使用strtotime(),我得到像2013-11-08 20:07:00的结果

非常感谢你

最好的祝福

$datetime = new DateTime("Mon Jul 25 05:51:34 +0000 2011");
$datetime->setTimezone(new DateTimeZone('Europe/Zurich'));
echo $datetime->format('U');

DateTime,DateTime::format(),DateTime::setTimezone(),DateTimeZonedate()

原文链接:https://www.f2er.com/php/133103.html

猜你在找的PHP相关文章