Two ways to set the time zone in PHP

Source: Internet
Author: User

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

Date. timezone = PRC

Set the time zone in the code

 

1 date_default_timezone_set ('Asia/Shanghai'); // 'Asia/Shanghai' Asia/Shanghai

2 date_default_timezone_set ('Asia/Chongqing '); // The value of Asia/Chongqing is "Asia/Chongqing"

3 date_default_timezone_set ('prc'); // PRC is "People's Republic of China"

4I ni_set ('date. timezone ', 'etc/GMT-8 ');

5 ini_set ('date. timezone ', 'prc ');

6 ini_set ('date. timezone ', 'Asia/Shanghai ');

7 ini_set ('date. timezone ', 'Asia/chongqing ');

 

Any of the above seven methods can meet our needs.

When the system is initialized, add

Ini_set ('date. timezone ', 'Asia/Shanghai'); or
Date_default_timezone_set ("PRC ");

Hours.

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.