从 Twitter 响应格式化日期 Zend Framework
我正在尝试使用 Zend_Date 格式化 Twitter API 响应中的日期字段“created_at”。我想输出这样的日期:
2009年7月21日,12:30:00(例如)
这是什么格式?:
Fri Oct 23 15:47:42 +0000 2009
非常感谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经很幸运了
I've had the best luck just doing
这些日期看起来不是标准格式。因此,您必须创建具有正确常量的格式(在这里查看它们)。
您的第一个示例(2009 年 7 月 21 日,12:30:00):
10 月 23 日星期五 15:47:42 +0000 2009):
您可以使用此格式导入日期
或输出
您的第二个示例(2009年 手册用于区域设置支持等。
These date are not looking a standard format. Therefore, you have to create a format with the right constants (see them here).
Your first example (21 of July of 2009, 12:30:00):
Your second example (Fri Oct 23 15:47:42 +0000 2009):
This formats you can use both for importing a date
Or for outputting
Look in the manual for locale support etc.