PHP Timestamp and time conversion

Source: Internet
Author: User
PHP timestamp and time-specific conversion

Three built-in functions:

Time ()     //Get UNIX System timestamp mktime (hour,minute,second,month,day,year)//convert   specified time to timestamp date (time format, timestamp)/     / Convert timestamps into easy-to-read time

Time-Date:

$now = time (); echo "Timestamp is". $now; echo "Creation date is". Date ("Y-m-d h:i:s", $now); output: Timestamp is 1404610907 the creation date was 2014-07-06 09:41:47

Mktime-Date:

$d =mktime (9, A, 7, 6,); echo "Timestamp is". $d; echo "Creation date is". Date ("Y-m-d h:i:s", $d); output: Timestamp is 1404610907 the creation date was 2014-07-06 09:41:47

Note:

General registration or login by default with the time function to obtain the current timestamp, when there is a need to specify a specific time of the business can be converted to a specific time with the Mktime function time stamp, and the date function can reverse the time stamp conversion to a convenient time to see.

PHP Timestamp and time conversion

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.