西数超哥博客
运维经验教程分享

解决date(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date

PHP调试的时候出现了警告:date(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date…….

It is not safe to rely on the system解决方法,其实就是时区设置不正确造成的,本文提供了3种方法来解决这个问题。

实际上,从PHP 5.1.0开始当对使用date()等函数时,如果timezone设置不正确,在每一次调用时间函数时,都会产生E_NOTICE 或者 E_WARNING 信息,而又在php中,date.timezone这个选项,默认情况下是关闭的,无论用什么php命令都是格林威治标准时间,但是PHP5.3中如果没有设置部分时间类函数也会强行抛出了这个错误的。
PS:现在由于大部分人使用VPS/云主机,需要自己配置的环境的就更加会容易出现这个情况。

方法1:

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

方法2:

在需要用到这些时间函数的时候,在页面添加date_default_timezone_set(“PRC”);

方法3:

在页头加上设置时区ini_set(‘date.timezone’,’Asia/Shanghai’);

问题解决。

转载请注明:西数超哥博客www.ysidc.top» 解决date(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date

https://www.ysidc.top 西数超哥博客,数据库,西数超哥,虚拟主机,域名注册,域名,云服务器,云主机,云建站,ysidc.top

赞(0)
声明:本站发布的内容(图片、视频和文字)以原创、转载和分享网络内容为主,若涉及侵权请及时告知,将会在第一时间删除。本站原创内容未经允许不得转载:西数超哥博客 » 解决date(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date