您的位置:首页 > Web前端

解决方案:Warning: phpinfo(): It is not safe to rely on the system's timezone settings.

2015-02-12 13:35 776 查看
(1)打开phpinfo();时在date地方会出现如下提示:

Warning: phpinfo(): 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.

看下面表格,发现date.timezone没有设置值:

DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneno valueno value
(2)这是php的事情,设置就在php.ini中。发现默认的是;date.timezone=,后面没有值。所以增加最下面那一行即可。

[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone ;date.timezone =
;增加一个timezone
date.timezone=PRC

(3)记得重启apache服务器。让设置生效。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐