How to set time zone in php configuration file

青灯夜游
Release: 2023-03-11 11:22:01
Original
2889 people have browsed it

How to set the time zone in the php configuration file: First find and open the configuration file "php.ini"; then search for the "date.timezone" item in the file and change the ";" in ";date.timezone=" "Remove, fill in the corresponding time zone identifier after "="; finally save the file and restart the server.

How to set time zone in php configuration file

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

php configuration file settings Time zone method

The PHP configuration file is the php.ini file in the PHP installation directory. Find and open it. Then search fordate.timezonein the file, we will see a piece of information as shown below:

[Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone ;date.timezone =
Copy after login

where;date.timezone =thein front of it ;has the same function as//in PHP. They both mean comments. Here we need to remove this;and add=## in this sentence. #Fill in the corresponding time zone identifier later, as shown below:

[Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone = Asia/Shangha
Copy after login

There are many time zone identifiers, which can be viewed by visiting "https://www.php.net/manual/zh/timezones.php" , the following lists some commonly used time zone identifiers and their meanings:

  • Asia/Shanghai —— Shanghai

  • Asia/Chongqing —— Chongqing

  • Asia/Urumqi —— Urumqi

  • Asia/Hong_Kong —— Hong Kong

  • Asia/ Macao —— Macao

  • Asia/Taipei —— Taipei

  • Asia/Singapore —— Singapore

  • PRC - China Time Zone

Tips: If you are in China, we can set the time zone to "

Asia/ShanghaiorPRC" , remember to restart the server after successful setting!

[Example] Let’s use a piece of code to verify whether our settings are effective.

Copy after login

The running result is as follows:

2021-07-08 18:33:22
Copy after login
If the running result is equal to the local time of our computer, it means that our setting is successful.

Recommended learning: "

PHP Video Tutorial"

The above is the detailed content of How to set time zone in php configuration file. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!