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教程有兴趣的朋友有所帮助。
上一篇: header 函式的使用
下一篇: php中高性能中文字符串截取函数分享