程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 解決php的“It is not safe to rely on the system’s timezone settings”問題,relytimezone

解決php的“It is not safe to rely on the system’s timezone settings”問題,relytimezone

編輯:關於PHP編程

解決php的“It is not safe to rely on the system’s timezone settings”問題,relytimezone


如果使用PHP5.3以上版本時,如果沒有正確的配置php.ini就會出現PHP日期函數的錯誤。以前很多舊的PHP編程教程沒有說到這個問題,所以不少讀者會覺得困惑,下面筆者為大家講述解決這個問題的三種方法。
"PHP Warning:
date() [function.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 getting this warning,
you most likely misspelled the timezone identifier.
We selected 'UTC' for '8.0/no DST' instead in"

實際上,從PHP 5.1.0,當對使用date() 等函數時,如果 timezone 設置不正確,在每一次調用時間函數時,都會產生 E_NOTICE 或者 E_WARNING 信息。而又在 PHP 5.1.0 中,date.timezone 這個選項,默認情況下是關閉的,無論用什麼PHP 命令都是格林威治標准時間,但是PHP 5.3 中好像如果沒有設置也會強行拋出了這個錯誤的,解決此問題,只要本地化一下就行了。

一、在頁頭使用date_default_timezone_set()設置 date_default_timezone_set('PRC'); //東八時區 echo
date('Y-m-d H:i:s');

二、在頁頭使用 ini_set('date.timezone','Asia/Shanghai');

三、修改 php.ini(如果是 windows 系統,那麼文件在 C 盤,Windows 目錄下,假如系統是安裝在 C 盤)。使用記事本打開 php.ini 查找 date.timezone 去掉前面的分號修改成為:date.timezone = PRC
重啟http服務(如apache2或iis等)即可!

以上三種方法任選其中一種即可,小編推薦使用第三種方法,不用每次都要增加額外的代碼。

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