Warning: strftime(): It is not safe to rely on the system's timezone settings.

时间:2022-06-23 02:59:51

当运行程序时,会出现如下警告:

Warning: strftime(): 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. in /home/wwwroot/cj.fbb.gamedo.com.cn/smarty/sysplugins/smarty_internal_runtime_codeframe.php on line 49


原因:php默认是以格林威治标准时间(UTC)为准进行时间转换,因为自己所处的当地时间与UTC会有出入,格林威治标准时间和北京时间有8个小时的时间差,所以必须为php指定一个时区,让PHP知道以那个失去为准进行转换

解决方法:

1、在PHP程序头部使用date_default_timezone_set()设置我的默认时区为北京时间(PRC,中国的英文缩写)即 date_default_timezone_set("PRC")  这种方法必须在每个使用date的文件中添加相关函数

2、在php.ini 中找到date.timezone 行,支持前面的 “ ; ” 号,并将它的值设置为PRC,设置好以后为:date.timezone = "Asia/Shanghai"