Home >Backend Development >PHP Tutorial >关于php5.4中date出现warning的解决方法

关于php5.4中date出现warning的解决方法

WBOY
WBOYOriginal
2016-06-23 13:34:531221browse

关于php5.4中date出现warning的解决方法

今天发现在nginx+php5.4安装后,使用info.php测试页时候,提示以下警告:

这是因为PHP所取的时间是格林威治标准时间,所以和你当地的时间会有出入,格林威治标准时间和北京时间大概差8个小时左右,我们可以按照下面的方法解决: 


1、在页头使用date_default_timezone_set()设置我的默认时区为北京时间,即 就可以了。

例如:vi info.php

date_default_timezone_set("PRC");

phpinfo();

?> 

2、在php.ini中设置date.timezone的值为PRC,设置好以后的为:date.timezone=PRC或者date.timezone = Asia/Shanghai,同时取消这一行代码的注释,即去掉前面的分号就可以了。 

sed -i "s#;date.timezone =#date.timezone = PRC#g" /usr/local/php/etc/php.ini

或者

sed -i "s#;date.timezone =#date.timezone = Asia/Shanghai#g" /usr/local/php/etc/php.ini

3、重启php服务和重新加载nginx服务

/etc/rc.d/init.d/php-fpm  restart

/usr/local/nginx/sbin/nginx -s reload


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn