如何将 yyyy-MM-dd HH:mm:ss 转换为“2010 年 4 月 15 日”使用PHP
我有以下日期格式:2010-04-15 23:59:59
我如何将其转换为:2010 年 4 月 15 日
谢谢
I have the following date format: 2010-04-15 23:59:59
How would I go about converting this into: 15th Apr 2010
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除了使用
date
和strtotime
之外,您还可以执行以下操作:
In addition to using
date
andstrtotime
, you can door