unix时间戳转换结果不准确php

时间:2012-06-16 00:07:47

标签: php

我正在尝试将unix时间戳转换为可读文本。时间戳存储在数据库中并显示在表中。问题是结果不准确。

<小时/> 的代码:

<td>'.date("F j, Y, g:i a", strtotime($row['expire'])).'</td>

<小时/> 的数据库:

enter image description here

<小时/> 的结果:

enter image description here

1 个答案:

答案 0 :(得分:3)

两个选项:

  • 删除strtotime来电,因为您已将时间戳记作为数字,或者
  • 将数据库字段更改为TIMESTAMP。