网站地图    收藏   

主页 > 后端 > php资料库 >

PHP警告date(): It is not safe to rely on the system'_自学

来源:自学PHP网    时间:2014-12-04 22:12 作者: 阅读:

[导读] 近来总是有系统邮件提示,开始没在意,后来不断提示就看了一下。提示以下信息 PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting o...

近来总是有系统邮件提示,开始没在意,后来不断提示就看了一下。提示以下信息

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 gett
ing this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Chongqing' for 'CST/8.0/no DST' instead in /data0/htdocs//function/function.php on line 542

大体是说timezone没有设置,在中国使用的是格林+8小时,所以需要设置一下。

第一种

在页面头部加入以下语句

date_default_timezone_set("PRC");

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

第二种

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

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论