gpt4 book ai didi

php - 使用 PHP 将时间戳转换为可读的日期/时间

转载 作者:太空宇宙 更新时间:2023-11-03 11:17:00 25 4
gpt4 key购买 nike

我在 MySQL 数据库中有一个名为 last_login 的字段,它存储为一个 int(10)。我想将 last_login 数据回显为可读的日期/时间。这是我目前拥有的代码:

$timestamp = 1291575177;
echo date("h:i:s",$timestamp);

将 MySQL 数据库中的 last_login 数据添加到上面 1291575177 所在的代码中的正确方法是什么?

最佳答案

使用这个:

echo date('Y-m-d:H:i:s',1291575177);

其输出为 2010-12-05:18:52:57

关于php - 使用 PHP 将时间戳转换为可读的日期/时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4361287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com