PHP5.1以上版本使用Date函數是會遇到這樣的Warning:
"PHP Warning: date() [function.date]: It is not safe to rely on the system's timez systemsares. *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 ly misspelled the timezone identifier. We selected 'UTC' for '8.0/no DST' instead in"
這就是設定中的函數不說明
大家可以嘗試在PHP的安裝文件裡找到php.ini(配置過以後的文件),然後Ctrl+F查找“date.timezone”,(沒錯應該是第二個文件),設定檔裡顯示的是「;date.timez/span>」這句話需要修改,將前面的;去掉,然後在=後面加上PRC,這代表將時區功能開啟設置,並設置成中國(PRC)時區!
了! 以上就介紹了PHP51以上版本使用Date函數是遇到的警告的處理辦法,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。