Home > Article > Backend Development > How to set China time zone in php
How to set the Chinese time zone in php
1. Open the php.ini file and search for the configuration item "date.timezone" and change the corresponding Just change the value to "PRC";
date.timezone = PRC
Note: If the php.ini file does not have this line of code, just add it directly to the end of the file.
2. Use the PHP built-in function "date_default_timezone_set" to set the default time zone to "PRC".
date_default_timezone_set('PRC');
Recommended tutorial: "PHP Tutorial"
The above is the detailed content of How to set China time zone in php. For more information, please follow other related articles on the PHP Chinese website!