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 -i|grep php.ini 查看php.ini 位置
2. 找到date.timezone,修改为 date.timezone = PRC,后保存