使用时间戳作为正常时间

发布于 2024-10-23 15:41:41 字数 207 浏览 5 评论 0原文

我想将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帥小哥 2024-10-30 15:41:41

使用 date()strtotime() 这是一个很好的起点......

echo date ( 'F j G:i', strtotime ( $row [ 'timestamp' ] ) );

using date() with strtotime() it is good place to start...

echo date ( 'F j G:i', strtotime ( $row [ 'timestamp' ] ) );
眼泪淡了忧伤 2024-10-30 15:41:41

Date_format 是你的朋友:)

http ://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format

select date_format('2011-03-20 14:05:34','%M %d at %H:%i') as my_date ....

Date_format is your friend :)

http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format

select date_format('2011-03-20 14:05:34','%M %d at %H:%i') as my_date ....
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文