The date. timezone option has been added to php. ini since php5.1.0. It is disabled by default.
That is, the displayed time (no matter what php Command is used) is the Greenwich Mean Time.
The difference between the time and our time (Beijing time) is exactly 8 hours. In the following three ways, we can restore the normal time.
1. The simplest method is not to use php5.1 or a later version.
2. If it must be used and php. ini cannot be modified
Add date_default_timezone_set (XXX );
3. Once and for all, only php. ini can be modified. Open php. ini and find date. timezone. Remove the semicolon.
= Add XXX to the backend and restart the http service (such as apache2 or iis ).
For XXX, the available values in mainland China are: Asia/Chongqing, Asia/Shanghai, Asia/Urumqi (Chongqing, Shanghai, and Urumqi in sequence)
Available in Hong Kong and Taiwan regions: Asia/Macao, Asia/Hong_Kong, Asia/Taipei (in the order of Macao, Hong Kong, and Taipei)
Singapore: Asia/Singapore
Foreigners seem to have missed Beijing
Other available values are: Etc/GMT-8, Singapore, Hongkong, PRC
What is PRC? PRC is the People's Republic of China -_-
The above are all my documents from the php official documents to sort out the GMT-8 below the area, there may be omissions