php Warning phpinfo It is not safe to rely on the system
阿新 • • 發佈:2018-11-08
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
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
; 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 消失。