有没有简单的方法可以在php中格式化日期?
PHP 中是否有任何函数可以将这种 '5/1/2011'
日期格式化为 '2011,1,5'
is there any function to format this kind of '5/1/2011'
date to '2011,1,5'
to this in PHP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 PHP date 函数
在您的情况下,这应该可以解决问题:
You can use PHP date function
In your case this should do the trick:
您可以通过正则表达式来执行此操作:
You can do this via a regular expression:
从 PHP 5.2 开始,更新更好的方法是使用 DateTime 类:
查看实际操作
A newer and better way to do this as of PHP 5.2 is the DateTime class:
See it in action