Recently there is always a system mail prompts, began not to care, and then constantly prompted to look at it. Prompt for the following information
Copy Code code as follows:
PHP warning:date (): It isn't safe to rely on the system's timezone settings. You are are *required* to use the Date.timezone setting or the Date_default_timezone_set () function. In case you are used any of the those methods and you are 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
Generally speaking, timezone is not set, in China, the use of green + 8 hours, so need to set up.
First Kind
Add the following statement to the page header
Copy Code code as follows:
Date_default_timezone_set ("PRC");
The disadvantage of this approach is that all pages have to be added
Second Kind
Find Date.timezone this line in php.ini, change the value to PRC, such as Date.timezone = PRC. It would be nice if you didn't have the line to add directly. Finally restart the Web server with PHP.