PHP Date and Time Functions

Source: Internet
Author: User

PHP Date and Time Functions

1. Time Zone settings

Method 1: set date. timezone = Asia/Hong_Kong of php. ini so that the default system time is East 8.

Method 2: Use the date_default_timezone_set () function to set the time zone to date_default_timezone_set ("Asia/Hong_Kong ")

2. Get the current Timestamp

Use the time () function to directly return the current time and date. The timestamp indicates the number of seconds from 00:00:00 on January 1, January 1, 1970 to the program running time.

3. Get the current date and time

Use the date () function to return the current date. Date () has many parameters. For example, if "d" is used, the date from 01 to 31 of the current month is returned.

4. Resolve the date and time to the Unix Timestamp

You can use the maketime () function to generate a Unix timestamp.


The following is an example:

Date_default_timezone_set ("Asia/Hong_Kong ");

$ Timefuture = mktime );
$ Timenow = time ();
$ Timecount = $ timefuture-$ timenow;
$ Day = round ($ timecount/86400 );

Echo date ("Current Time: Y, m, d, [l] H: I minute s seconds", $ timenow )."
";
Echo "is still". $ day. "days from January 1, January 1, 2016. "."
";


?>

The running result is:

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.