使用时间戳作为正常时间
我想将 CURRENT_TIMESTAMP 从 MySQL 字段类型时间戳“转换”为更可读的格式,例如:
2011-03-20 14:05:34
到
3 月 20 日下午 2:05
但我也想使用变量使时间采用 24 小时格式,
3 月 20 日 14:05
我可以使用什么 PHP 代码来做到这一点?
I'd like to "transform" the CURRENT_TIMESTAMP from the MySQL field type timestamp into a more readable format, such as:
2011-03-20 14:05:34
to
March 20 at 2:05 PM
But I'd also like to use a variable to make the time be in 24h format,
March 20 at 14:05
What PHP code could I use to do such?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 date() 和 strtotime() 这是一个很好的起点......
using date() with strtotime() it is good place to start...
Date_format 是你的朋友:)
http ://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format
Date_format is your friend :)
http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format