码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-02-12 14:02:44      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

(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没有设置值:

Directive Local Value Master Value
date.default_latitude 31.7667 31.7667
date.default_longitude 35.2333 35.2333
date.sunrise_zenith 90.583333 90.583333
date.sunset_zenith 90.583333 90.583333
date.timezone no value no 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服务器。让设置生效。

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

标签:

原文地址:http://blog.csdn.net/weisubao/article/details/43761387

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!