程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP Warning: date(): It is not safe to rely on the system

PHP Warning: date(): It is not safe to rely on the system

編輯:關於PHP編程

昨天碰到使用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頁面中加入

 代碼如下 復制代碼 date_default_timezone_set('asia/shanghai');

或者

 代碼如下 復制代碼 ini_set('date.timezone','asiashanghai');

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved