这是一种什么时间格式
我遇到了时间戳字符串,不太确定它是什么格式:
2011-04-20T17:04:55.678+00:00
我还需要以相同的格式指定 PST 时间,我该怎么做?谢谢。
I came cross and string of timestamp, not quite sure what kind of format is it:
2011-04-20T17:04:55.678+00:00
also i need to specify PST time in the same format, how can i do that? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它是 ISO 8601。如果您使用的是 Wordpress,您可以使用 $date_string 进行转换
,其中 $date_string 是您的 ISO 时间。
如果不是,请使用
strtotime($var)
It is an ISO 8601. If you are using Wordpress you can convert it using
where $date_string is your ISO time.
If you are not, use
strtotime($var)
ISO_8601(或其变体)
ISO_8601 (or a variant therof)
看起来像 ISO 8601。
Looks like ISO 8601.