Recently there is always a system email prompt, began not to care, and then constantly prompted to look at it. Prompt for the following information
Copy the Code code as follows:
PHP warning:date (): It is not safe for rely on the system ' s timezone settings. You is *required* to use the Date.timezone setting or the Date_default_timezone_set () function. Used any of those methods and you is still Gett
ing this warning, your 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
Basically said TimeZone is not set, in China is using green + 8 hours, so need to set up a bit.
First Kind
Add the following statement to the head of the page
Copy the Code code as follows:
Date_default_timezone_set ("PRC");
One drawback of this approach is that all pages have to be added
The second Kind
In php.ini find Date.timezone this line, change the value to PRC, such as Date.timezone = PRC. It would be nice if you didn't have this line directly added. Finally, restart the Web server with PHP.