Php time () and date () are different from local computers

Source: Internet
Author: User
Tags echo date

Some people often ask me why php time () and date () are different from those on the local computer. There are several hours of related time. It is 8 hours of careful calculation, this is the php date_default_timezone_set Time Zone setting problem, we just need to set it up.

If the date time is inconsistent, use date_default_timezone_set to set the time zone:

The Code is as follows: Copy code
<? Phpdate_default_timezone_set ('Asia/Chongqing '); // obtain the current time echo date ('Y-m-d H: I: s', time ()); echo "<br>"; // calculate the current time echo date ('Y-m-d H: I: s', time ()-600 ); // minus 10 hours echo "<br>"; // time stamp to echo date ('Y-m-d H: I: s', 1364277600 ); // time to timestamp (accurate to seconds only) echo strtotime (""); echo "<br> ";

?>

In addition to the above method, we can set a time zone in php. ini. In the future, we do not need to add this date_default_timezone_set ('Asia/Chongqing ').

The Code is as follows: Copy code

Date. timezone = PRC

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.