Multiple solutions with 8 hours of time difference in php _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
Multiple solutions for 8 hours of time difference in php. There are two ways to solve the eight-hour time zone problem: one is in php. in ini, set date. timezonePRC is written in this way. one is in the php code date_default_timezone_set (AsiaChongqing). In this way, there are two ways to solve the eight-hour time zone problem. The other is in php. in ini, set date. timezone = PRC, one is in the php code date_default_timezone_set (\ 'Asia/Chongqing.

You must set your own time zone after php5, either modify the settings of php. ini, or modify them in the code.

Set the time zone in PHP. INI

The code is as follows:
Date. timezone = PRC

Set the time zone in the code

The code is as follows:
Date_default_timezone_set ('prc'); // PRC is "People's Republic of China"

The above can meet our needs.

When the system is initialized, add

The code is as follows:
Ini_set ('date. timezone ', 'Asia/Shanghai ');
Or
Date_default_timezone_set ("PRC ");


You can also write this in php.

The code is as follows:
Date_default_timezone_set ('Asia/Chongqing ');
Echo date ('Y-m-d H: I: s ');
?>


If you are the first method, remember to restart your apahce server. if it is the second method, it does not matter. well, now we can solve the time zone difference of 8.

Pipeline = PRC, one is in the php code date_default_timezone_set (\ 'Asia/Chongqing \ '); this way...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.