Home  >  Article  >  Backend Development  >  How to set China time zone in php

How to set China time zone in php

Guanhui
GuanhuiOriginal
2020-05-08 16:27:444636browse

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!

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