Get PHP 0 O'Clock time stamp of the day

Source: Internet
Author: User
Tags echo date
In this paper, we introduce the method of PHP to get 0 o'clock time stamp, combined with case analysis of PHP common time stamp conversion and operation related operations skills, the need for friends can refer to, hope to help everyone. Today's project, want to see every day is the full information of the day, so want to get the day 0 points of time stamp, review the relevant knowledge of time stamp, summarized as follows:


<?phpheader ("Content-type:text/html;charset=utf-8");//Set Beijing time as the default timezone date_default_timezone_set (' PRC ');// The current time of the output is Echo date ("Y-m-d h:i:s", Times ()); 2016-08-11 10:30:32//Get time stamp $today = strtotime (Date ("y-m-d"); Echo ' <br> '; echo $today; 1470844800echo ' <br> ';//Verify that the time stamp on the morning of the day is correct echo date ("Y-m-d h:i:s", $today); 2016-08-11 00:00:00echo ' <br> ';//24-point Timestamp $end = $today +60*60*24;//Verify that the 24-point timestamp for the day is correct echo date ("Y-m-d h:i:s", $ End); 2016-08-12 00:00:00echo ' <br> ';//Get a timestamp of 0 points for the specified time at-----Strtotime (' 2014-06-06 '); Echo ' <br> '; echo $time; 1401984000echo ' <br> ';//verify whether the timestamp for the specified time echo date ("Y-m-d h:i:s", $time); 2014-06-06 00:00:00?>
Related Article

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.