参见英文答案 >
Format of 2013-04-09T10:00:00Z in php [closed]2
我的日期格式是这样的
我的日期格式是这样的
2013-05-07 18:56:57 (yyyy-MM-dd hh:mm:ss)
我想要输出如下.
2013-05-07T06:17:55.827Z
这应该在Z(ulu)时区中给出正确的ISO8601日期/时间:
原文链接:https://www.f2er.com/php/140184.htmlstr_replace('+00:00','Z',gmdate('c'))
做日期转换:
str_replace('+00:00',gmdate('c',strtotime('2013-05-07 18:56:57')))
要有额外的.000(这是无用的imho):
str_replace('+00:00','.000Z',strtotime('2013-05-07 18:56:57')))