PHP - RFC3339 日期为“友好”日期(谷歌日历 API)
我需要将日期从 RFC3339 格式(由 google calendar api 返回)转换为 PHP 中的“10 月 1 日下午 5 点”等格式。
如果我是正确的,RFC3339 的格式是:2010-12-01T17:00:00.000-02:00
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PHP 令人惊叹的
strtotime
和日期
函数。更新:如果您的 PHP >= 5.2,您可以使用 DateTime 类。
Use PHP's amazing
strtotime
anddate
functions.UPDATE: If you have PHP >= 5.2, you can use the DateTime class.
使用 strtotime() 转换为 UNIX 时间戳。然后 date() 格式化输出
Use strtotime() to convert to a UNIX timestamp. Then date() to format the output