Maison > Article > développement back-end > PHP51以上版本使用Date函数是遇到的警告的处理办法
PHP5.1以上版本使用Date函数是会遇到这样的Warning:
"PHP Warning: date() [function.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 'UTC' for '8.0/no DST' instead in"
这是说明,PHP中的时区没有设置或是使用的函数不对!
大家可以尝试在PHP的安装文件里找到php.ini(配置过以后的文件),然后Ctrl+F查找“date.timezone”,(没记错应该是第二个文件),配置文件里显示的是“;date.timez/span>”这一句话需要修改,将前面的;去掉,然后在=后面添加上PRC,这代表将时区功能开启设置,并设置成中国(PRC)时区!
最后,一定要重启服务器(Apache,或是IIS),然后问题就解决了!!!
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了PHP51以上版本使用Date函数是遇到的警告的处理办法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。