Php time () uses the date function to calculate the time difference between the local computer and the server

Source: Internet
Author: User
Tags echo date

I recently configured a wamp Server, but found that the time is different from the local time, and the time obtained by using time is displayed as date, the following describes the causes and solutions.

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

The Code is as follows: Copy code
<? Php // obtain the current time echo date ('Y-m-d H: I: s', time (); echo "<br> "; // calculate the current time by 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> ";

?>

Another way is to modify the configuration file in php. ini.

Method 1:
Date_default_timezone_set ('prc ');
No return value. Now we can use the date function directly.
$ Time = date (Y. "year". m. "month". d. "day". G. "Hour". I. "Minute ");

Method 2:
Modify php. date. timezone = date. timezone = "Asia/Shanghai" (or change to date. timezone = "PRC"), remove the semicolon, and restart Apache.

** Remember to add quotation marks.

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.