php中的字符串到时间

发布于 2024-11-09 12:47:13 字数 190 浏览 0 评论 0原文

我正在制作一个连接到用户 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

月寒剑心 2024-11-16 12:47:14

关于格式化日期的问题很多,你应该通过搜索找到你要找的内容。

这里是一个快速:

echo date("d/m/Y H:i", strtotime($sOriginalformat));

Many questions on formatting dates, you should find what you are looking for by searching.

Here a quicky:

echo date("d/m/Y H:i", strtotime($sOriginalformat));
じее 2024-11-16 12:47:14

您可以使用函数strtotime()。查看手册

You could use the function strtotime(). Have a look at the Manual.

依 靠 2024-11-16 12:47:14
strtotime("Sat, 21 Aug 2010 22:31:20 +0000");
strtotime("Sat, 21 Aug 2010 22:31:20 +0000");
生活了然无味 2024-11-16 12:47:14

您可以使用strtotime。如果您可能想做更复杂的事情,请查看 DateTime 类。它功能强大且直观——我认为它比你自己乱搞时间戳更透明。

$dt = new DateTime($sOriginalFormat);
$sNewFormat = $dt->format("d/m/Y H:i");

You can use strtotime. If you might ever want to do more complex things, have a look at the DateTime class. It is powerful and intuitive -- I think it's more transparent than mucking around with the timestamp yourself.

$dt = new DateTime($sOriginalFormat);
$sNewFormat = $dt->format("d/m/Y H:i");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文