一.在使用到date()方法時,必須得先設置時區,不然瀏覽器會輸出這樣的內容:Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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 E:\abc\AppServer\InstallLocation\AppServ\mysite\test.php on line 4php
解決方法:①在php代碼的開頭使用date_default_timezone_set()方法來設置時區,如date_default_timezone_set(PRC);(這裏的PRC是People's Republic of China,即中華人民共和共),至於這個date_default_timezone_set()方法在設置時區時不一樣地點的具體設置讀者能夠自行參考API文檔,在其中查找date_default_timezone_set便可。(順便說一下,PRC不在所支持的時區列表的‘亞洲’中而是在‘其餘’裏面)②能夠到php.ini文件中修改date.timezone = PRCweb
二.關於date("Y-m-d H:i:s")方法中的參數簡單介紹:①對於2014,大寫Y顯示是2014,小寫y顯示是14;②12小時制,使用小寫g(不帶前導0,即8點顯示爲8)或者小寫h(帶有前導0,即8點顯示爲08)③24小時制,使用大寫G(不帶前導)或者大寫H(帶前導)瀏覽器