Powerful time conversion function of php strtotime

Source: Internet
Author: User
In php, the strtotime () function resolves the datetime description of any English text to a Unix timestamp, which is also frequently used, if you have any need, refer to using strtotime to convert Time strings of various formats into timestamps.

Convert regular time format

Echo date ('Y-m-d H: I: S', strtotime ('2017-01-30 ')). PHP_EOL; echo date ('Y-m-d H: I: S', strtotime ('20140901 ')). PHP_EOL;

Change Natural Time description

// Yesterday echo date ('Y-m-d H: I: S', strtotime ('Yesterday ')). PHP_EOL; // last week echo date ('Y-m-d H: I: S', strtotime ('last week ')). PHP_EOL; // this week's start time echo date ('Y-m-d H: I: S', strtotime ('this week midnight ')). PHP_EOL; // this month start time echo date ('Y-m-d H: I: S', strtotime ('first day of this month midnight ')). PHP_EOL; // calculate the relative time echo date ('Y-m-d H: I: S', strtotime ('+ 1 month ')). PHP_EOL;

Complete php Time description document can refer to http://php.net/manual/zh/datetime.formats.relative.php

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.