Home > Article > Backend Development > How to set php regional time
php regional time setting method: 1. Use the "date_default_timezone_set" function, the syntax is "date_default_timezone_set("region")"; 2. Open the php.ini file, find and modify the value of "date.timezone".
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
php default time is European Greenwich Mean Time (Europe/Berlin), which is exactly 8 hours apart. You can modify the time zone according to your needs.
1. Use the date_default_timezone_set function
Enter the php file and use the date_default_timezone_set function where the time is initialized to change the time zone to what we need.
date_default_timezone_set("PRC"); echo "time:".date("Y-m-d H:i:s",time());
2. Modify the php.ini configuration file
Enter the php.ini configuration file and change the default time zone to the time zone you need.
;date.timezone=Europe/Berlin date.timezone=PRC
In fact, the easiest way is not to use php5.1 or above, but obviously this is not an advisable method.
Add some common settings:
People's Republic of China: PRC;
Available in mainland China: Asia/Chongqing, Asia/Shanghai, Asia/Urumqi (in order Chongqing, Shanghai , Urumqi)
Available in Hong Kong and Taiwan: Asia/Macao, Asia/Hong_Kong, Asia/Taipei (in order, Macau, Hong Kong, Taipei)
Recommended tutorial: php video tutorial
The above is the detailed content of How to set php regional time. For more information, please follow other related articles on the PHP Chinese website!