欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 处理2038后的日期

程序员文章站 2022-06-08 20:02:25
...
将时间戳转为年月日
$d=new DateTime("@21474836490");
$d->setTimezone(new DateTimeZone("PRC"));
echo $d->format("Y-m-d H:i:s");

将年月日转为时间戳

$d = new DateTime('2650-07-06 16:21:30');
echo'
'
.$d->format('U');

运行时 可能会报
warning: It is not safe to rely on the system’s timezone settings

(最好的方法)在php.ini里加上找到date.timezone项,设置date.timezone = “Asia/Shanghai”,重启环境就ok了。

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了 PHP 处理2038后的日期,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。