您的位置:首页 > 运维架构 > Linux

CentOS 6.5 [PHP Error] strftime(): It is not safe to rely on the system's timezone settings.

2018-01-23 20:23 696 查看
环境:CentOS 6.5 64bit

PHP版本:5.3.3

【问题】

在搭建stalker server时,/var/www/html/stalker_portal/deploy 执行phing出现如下错误:

[PHP Error] 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 'Asia/Chongqing'
for 'CST/8.0/no DST' instead [line 77 of /usr/share/pear/phing/tasks/system/TstampTask.php]

【解决方法】

1.第一种办法

在页面头部加入以下语句:

date_default_timezone_set("PRC");

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

2.第二种办法

在php.ini里找到date.timezone这行,把值改成PRC,如date.timezone
= PRC

如果没有这一行直接加上就好。最后重启WEB服务器与PHP即可。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐