文本日期转数字日期
我的表中有这种日期结果 EX: 2011 年 11 月 7 日, 12:00
所以我需要这种结果 EX: 11 07, 2011, 12, 00 如何将此文本日期转换为数字日期?
I have this kind of results for date in my table EX: November 07, 2011, 12:00 am
So I need this kind of result EX: 11 07, 2011, 12, 00
How can I convert this text date to numerical date?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 php 中查看 strtotime() 和 date() ,但您可能需要稍微格式化一下输出。
check out strtotime() with date() in php, you may need to format your output a little though.
请注意,在当前状态下,
strtotime
可能无法正确解析您的日期值Please note that in it's current state, your date value may not be parsed properly by
strtotime
这是我的看法:
以下是一些运行:
输出:11 07, 2011, 12, 00
输出:12 25, 2011, 05, 31
Here's my take on it:
Here are some runs:
Outputs: 11 07, 2011, 12, 00
Outputs: 12 25, 2011, 05, 31