1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > php Warning: phpinfo(): It is not safe to rely on the system's timezone settings.解决方法

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

时间:2023-08-06 17:17:04

相关推荐

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

安装php后,使用phpinfo();查看信息,有Warning: phpinfo(): It is not safe to rely on the system’s timezone settings,原因是没有设定系统的timezone。

解决方法:

1.打开php.ini,如不知道php.ini的位置,可以使用

<?phpphpinfo();?>

查看Loaded Configuration File就知道当前使用的php.ini位置了。

2.找到date.timezone,修改为 date.timezone = PRC,后保存。

[Date]; Defines the default timezone used by the date functions; /date.timezonedate.timezone =

修改为

[Date]; Defines the default timezone used by the date functions; /date.timezonedate.timezone = PRC

3.修改后重启php,查看phpinfo(); warning 消失。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。