warning: strtotime(): It is not safe to rely on the system's timezone settings

来源:互联网 发布:linux设置ip地址命令 编辑:程序博客网 时间:2024/05/01 05:40

调试PHP程序时,遇到的问题反馈代码:
PHP Warning:  strtotime(): 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 the timezone 'UTC' for now, but please set date.timezone to select your timezone. 

解决方法:


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


方法2:
在需要用到这些时间函数的时候,在页面添加date_default_timezone_set("PRC");


方法3:
在页头加上设置时区ini_set('date.timezone','Asia/Shanghai');

0 0