如何格式化原子日期时间
我以这种格式从 feed 中获取日期:
2009-11-04T19:55:41Z
我尝试使用 PHP 中的 date()
函数对其进行格式化,但收到一条错误消息:
date() 期望参数 2 很长,对象在 /bla/bla.php 中给出
我尝试使用 preg_replace()
删除 T
和 Z< /code>,但仍然无法让它工作。
I'm getting dates from feed in this format:
2009-11-04T19:55:41Z
I'm trying to format it using the date()
function in PHP, but I get an error saying:
date() expects parameter 2 to be long, object given in /bla/bla.php
I tried using preg_replace()
to remove the T
and the Z
, but still can't get it to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
strtotime
是一个很棒的日期转换函数格式为 Unix 时间戳。这会给你你想要的:
strtotime
is a wonderful function for converting date formats to Unix timestamps.This will give you what you're after:
有关(如评论中提到的)
或
或两者
或什至更好
或与时区
What about
or
or both
or even better
or with time zone (as mentioned in comments)
尝试使用
strptime
:Try using
strptime
:您可以使用 strtotime 函数。
You can use the strtotime function.
这是以 UTC 给出的标准 ISO 8601 组合日期和时间格式(因此是 Z)。
您也许可以使用以下命令解析它
,或者,如果失败(不应该,如果 PHP 声称理解 ISO 8601),您可以将 Z 替换为“+00:00”。
That is the standard ISO 8601 combined date and time format given in UTC (hence the Z).
You might be able to parse it using
or, if that fails (shouldn't, if PHP claims to understand ISO 8601), you can replace the Z by "+00:00".