如何在 PHP 中将 ISO8601 日期转换为其他格式?
Facebook 以 ISO8601 格式输出日期 - 例如: 2011-09-02T18:00:00
使用 PHP,如何将其重新格式化为: 2011 年 9 月 2 日星期五下午 6:00
注意 - 我是用 Javascript 做的,但是 IE 有日期错误,所以我想要一个跨浏览器的解决方案。
Facebook outputs dates in ISO8601 format - e.g.:
2011-09-02T18:00:00
Using PHP, how can I reformat into something like:
Friday, September 2nd 2011 at 6:00pm
Nb - I was doing it in Javascript, but IE has date bugs so I want a cross-browser solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
快速但有时不可靠的解决方案:
格式字符详细信息此处。
A fast but sometimes-unreliable solution:
Format characters detailed here.
从 ISO 8601 转换为 unixtimestamp :
从 unixtimestamp 转换为 ISO 8601 (时区服务器) :
从 unixtimestamp 转换为 ISO 8601 (GMT) :
从 unixtimestamp 转换为 ISO 8601 (自定义时区) :
Converting from ISO 8601 to unixtimestamp :
Converting from unixtimestamp to ISO 8601 (timezone server) :
Converting from unixtimestamp to ISO 8601 (GMT) :
Converting from unixtimestamp to ISO 8601 (custom timezone) :