Detailed description of how to set the time zone in php

Source: Internet
Author: User
Tags echo date

In php, there are many ways to set the time. The most common method is to directly set the time in php. date is modified in ini. timezone. If you do not have the server permission, you can directly use the date_default_timezone_set function to set it. I will introduce it to you below.

Modify php. ini. Open php. ini, find date. timezone, remove the semicolon = followed by XXX, and restart the http service (such as apache2 or iis ).

For XXX, the available values in mainland China are: Asia/Chongqing, Asia/Shanghai, Asia/Urumqi (in the order of Chongqing, Shanghai, and hulumu ).


Set the time zone in php. ini

The Code is as follows: Copy code

Date. timezone = PRC

Set the time zone in the code

The Code is as follows: Copy code

Date_default_timezone_set ('Asia/Shanghai'); // 'Asia/Shanghai' Asia/Shanghai

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

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

Ini_set ('date. timezone ', 'etc/GMT-8 ');

Ini_set ('date. timezone ', 'prc ');

Ini_set ('date. timezone ', 'Asia/Shanghai ');

Ini_set ('date. timezont ', 'Asia/chongqing ');

The above code can be directly set in the PHP page header.

The Code is as follows: Copy code

Date_default_timezone_set ('prc ');

Test:

Echo date ('Y-m-d H: I: s ');

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.