This article describes how to solve the "Itisnotsafetorelyonthesystem" stimezonesettings of php. For more information, see
This article describes how to solve the "It is not safe to rely on the system's timezone settings" Problem in php. For more information, see
If php or later is used, If PHP. ini is not correctly configured, the php date function is incorrect. In the past, many old PHP programming tutorials did not mention this issue, so many readers may be confused. The following I will tell you three ways to solve this problem.
"PHP Warning:
Date () [function. 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 'utc' for '8. 0/no DST 'instead in"
In fact, when using functions such as date () in PHP 5.1.0, if the timezone settings are incorrect, the E_NOTICE or E_WARNING information will be generated each time the time function is called. In PHP 5.1.0, date. the timezone option is disabled by default. No matter what PHP Command is used, the Greenwich Mean Time is used. However, it seems that PHP 5.3 will forcibly throw this error if it is not set, to solve this problem, just localize it.
1. Use date_default_timezone_set () in the page header to set date_default_timezone_set ('prc'); // echo in the east eight Time Zone
Date ('Y-m-d H: I: s ');
2. Use ini_set ('date. timezone ', 'Asia/Shanghai') in the page header ');
3. Modify php. ini (if it is a windows system, the file is in the C drive, Windows directory, and if the system is installed on the C drive ). Use NotePad to open php. ini and find date. timezone. Remove the semicolon and change it to: date. timezone = PRC.
Restart the http service (such as apache2 or iis!
You can choose one of the above three methods. The third method is recommended for small editors, so you do not need to add additional code each time.