【发布时间】:2018-08-18 00:47:05
【问题描述】:
所以我从 mysql 数据库中提取时间戳,想知道为什么所有时间检查都不起作用。
echo "The time is " . date("Y-m-d h:i:s");
echo "</br>";
echo "Mysql Timestamp " . $row["Uptime"];
echo "</br>";
echo "Mysql Timestamp as strtotime" .strtotime($row["Uptime"]);
echo "</br>";
echo "strtotime Current Time". strtotime("now");
echo "</br>";
输出:
时间是2018-08-18 12:42:55 Mysql 时间戳 2018-08-18 12:42:52 Mysql时间戳为strtotime1534596172 strtotime 当前时间1534552975转成字符串后的数字相差约4000。发生了什么事以及如何在不执行 x-4000 的情况下解决此问题?
【问题讨论】:
标签: php mysql timestamp strtotime