我在名为last_login的MySQL数据库中有一个字段,该字段存储为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
。