PHP 解决时间戳冲突,php 时间超出2038年 转化时间戳失败的解决方案

PHP有效的时间戳典型范围是格林威治时间 1901 年 12 月 13 日 20:45:54    到 2038 年 1 月 19 日

03:14:07。

在32位操作系统环境下,超出2038年之后,使用strtotime()获取不到对应的时间戳,这时可以使用new DateTime来进行处理。

即先将时间转化为DateTime对象,然后使用format方法进行转化。即:$datetime->format("U")

实验程序以及结果如下:

程序:

date_default_timezone_set("Asia/Shanghai");

echo "当前时间戳:".time()."\n";

echo "strtotime处理超出范围的时间戳:".strtotime("2096-10-05")."\n";

$datetime = new DateTime('2096-10-05');

echo "new DateTime处理超出范围的时间戳:".$datetime->format("U")."\n";

?>

运行结果:

[root@iZ28ppn9h91Z tqdao]# php test.php

当前时间戳:1512531426

strtotime处理超出范围的时间戳:

new DateTime处理超出范围的时间戳:4000204800

你可能感兴趣的:(PHP,解决时间戳冲突)