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

来源:互联网 发布:logmett是什么软件 编辑:程序博客网 时间:2024/06/05 17:55

(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 Valuedate.default_latitude31.766731.7667date.default_longitude35.233335.2333date.sunrise_zenith90.58333390.583333date.sunset_zenith90.58333390.583333date.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 =;增加一个timezonedate.timezone=PRC

(3)记得重启apache服务器。让设置生效。

0 0
原创粉丝点击