博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php错误1
阅读量:6819 次
发布时间:2019-06-26

本文共 657 字,大约阅读时间需要 2 分钟。

  hot3.png

时间错误

PHP Warning:  date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Chongqing' for 'CST/8.0/no DST' instead in /data0/htdocs/www.qttc.net/function/function.php on line 542

##第一种 在页面头部加入以下语句 复制代码 代码如下:

date_default_timezone_set("PRC");

这种方法有个缺点,就是所有的页面都得添加 ##第二种

在php.ini里找到date.timezone这行,把值改成PRC,如date.timezone = PRC。如果没有这一行直接加上就好。最后重启WEB服务器与PHP即可。

转载于:https://my.oschina.net/oneboi/blog/774696

你可能感兴趣的文章