如何将日期格式从 DD/MM/YYYY 更改为 YYYY-MM-DD?
如何使用 PHP 更改日期字符串的格式?
来自:06/16/2010
至:2010-06-16
How to change format of date string using PHP?
From: 06/16/2010
To: 2010-06-16
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 strtotime 函数。
Using the strtotime function.
您应该使用
\DateTime
并尽快删除字符串:查看更多:
http://php.net/manual/en/datetime.createfromformat.php
You should use
\DateTime
and get rid of strings as soon as possible:See more:
http://php.net/manual/en/datetime.createfromformat.php
php -r 'echo date("Ymd", strtotime("06/16/2010"));'
php -r 'echo date("Y-m-d", strtotime("06/16/2010"));'