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的位置,可以使用
立即学习“PHP免费学习笔记(深入)”;
<?php phpinfo(); ?>

2.找到date.timezone,修改为 date.timezone = RPC,后保存。
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone =
修改为
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = PRC
3.修改后重启php,查看phpinfo(); warning 消失。

以上就介绍了php Warning: phpinfo(): It is not safe to rely on the systems timezone settings.解决方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
                        
                        PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
                Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号