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

PHP date()函數警告: It is not safe to rely on the system解決方法

編輯: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. In case you used any of those methods and you are still gett
ing this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Chongqing' for 'CST/8.0/no DST' instead in /data0/htdocs/www.qttc.net/function/function.php on line 542

大體是說timezone沒有設置,在中國使用的是格林+8小時,所以需要設置一下。

第一種

在頁面頭部加入以下語句
復制代碼 代碼如下:
date_default_timezone_set("PRC");

這種方法有個缺點,就是所有的頁面都得添加

第二種

在php.ini裡找到date.timezone這行,把值改成PRC,如date.timezone = PRC。如果沒有這一行直接加上就好。最後重啟WEB服務器與PHP即可。

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