php中的字符串到时间
我正在制作一个连接到用户 Dropbox 帐户的 Web 应用程序。当我检索文件和文件夹的元数据时,Dropbox 按以下格式返回相应的修改日期:
“Sat, 21 Aug 2010 22:31:20 +0000”
我如何将其转换为以下格式?
21/08/2010 22:31
任何帮助将不胜感激。
I am making a web application that connects to user's Dropbox account. When i retrieve metadata of files and folders, Dropbox returns corresponding modified dates on following format:
"Sat, 21 Aug 2010 22:31:20 +0000"
How can i convert this to following format?
21/08/2010 22:31
Any help will be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
关于格式化日期的问题很多,你应该通过搜索找到你要找的内容。
这里是一个快速:
Many questions on formatting dates, you should find what you are looking for by searching.
Here a quicky:
您可以使用函数
strtotime()
。查看手册。You could use the function
strtotime()
. Have a look at the Manual.您可以使用
strtotime
。如果您可能想做更复杂的事情,请查看DateTime
类。它功能强大且直观——我认为它比你自己乱搞时间戳更透明。You can use
strtotime
. If you might ever want to do more complex things, have a look at theDateTime
class. It is powerful and intuitive -- I think it's more transparent than mucking around with the timestamp yourself.