Home >Backend Development >PHP Problem >How to set up php timezone

How to set up php timezone

藏色散人
藏色散人Original
2020-08-28 10:32:492322browse

How to set php timezone: first find and open the "php.ini" file; then modify the value of "date.timezone" with the statement "date.timezone=Asia/Shanghai"; finally restart the web server. Can.

How to set up php timezone

Recommended: "PHP Video Tutorial"

Time zone setting date.timezone## in PHP

#For the same timestamp, if the time zone is different, the obtained date and time string will also be different. Therefore, setting the correct time zone is essential.

Different time zones will affect the value of date('Y-m-d H:i:s', time()) or similar functions.

There are two ways to set the time zone:

1. Modify the value of date.timezone in the configuration file php.ini

date.timezone=Asia/Shanghai

or

date.timezone=Asia/Chongqing

It is set to the Shanghai time zone in Asia, which is China's time zone. After restarting the web server, it will take effect permanently.

2. Use the function to temporarily set the time zone

bool date_default_timezone_set ( string $timezone_identifier )

Returns true if the setting is successful, false if it fails.

date_default_timezone_set( 'Asia/Shanghai' );

The function date_default_timezone_get() can get the time zone in effect at the function call and return the time zone string.

The above is the detailed content of How to set up php timezone. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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