昨天碰到使用date()函數時出現PHP Warning: date(): It is not safe to rely on the system出現這種錯誤是因為php5默認date.timezone為utc,改為date.timezone = PRC即可.下面看我的方法總結。
在php程序中運行時報如下警告信息:
PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function
主要是時區沒有設置的緣故,調整很簡單,
打開php.ini文件,並找到date.timezone這行,改成如下:
代碼如下 復制代碼date.timezone = Asia/Shanghai
然後重啟apache即可!
在php程序中解決,在你程序前段加上
我們可以在php頁面中加入
或者
代碼如下 復制代碼 ini_set('date.timezone','asiashanghai');