您好,登錄后才能下訂單哦!
運行PHP應用,出現(xiàn)如下錯誤信息:
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 the timezone 'UTC' for now, but please set date.timezone to select your timezone. |
這是因為PHP所取的時間是格林威治標準時間,所以和你當?shù)氐臅r間會有出入格林威治標準時間和北京時間大概差8個小時左右。
我們可以按照下面的方法解決:
1、 在頁頭使用date_default_timezone_set()設置我的默認時區(qū)為北京時間,即<?phpdate_default_timezone_set("PRC");?>就可以了。
2、 在php.ini中設置date.timezone的值為PRC,設置好以后的為:date.timezone=PRC,同時取消這一行代碼的注釋,即去掉前面的分號就可以了。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。