0

我发现 XML 文件中的日期格式与页面上显示的完全不同。这是一个示例, http: //google.blogspot.com/feeds/posts/default

XML 的格式是 <published>2011-04-01T08:06:00.000-07:00</published>

如何将2011-04-01T08:06:00.000-07:00重新格式化为2011 年 4 月 2 日星期六上午 4:13

非常感谢您的任何建议和帮助:-)

4

1 回答 1

6

多谢你们!已经搞定了。

 $date=strtotime("2011-04-01T08:06:00.000-07:00");
 $date = date('l,F jS Y  g:ia', $date);
于 2012-09-02T07:30:05.937 回答