Home  >  Article  >  Backend Development  >  Detailed explanation of the steps to obtain the zero o'clock timestamp of the day in PHP

Detailed explanation of the steps to obtain the zero o'clock timestamp of the day in PHP

php中世界最好的语言
php中世界最好的语言Original
2018-05-17 13:57:214459browse

This time I will bring you a detailed explanation of the steps to get the zero o'clock timestamp of the day in PHP. Time stamp What are the precautions for PHP to get the zero o'clock timestamp of the day. The following is a practical case. Let's take a look. one time.

In today's project, what I want to see every day is all the information of the day, so I want to get the timestamp at zero o'clock that day, and review the relevant knowledge of timestamps. The summary is as follows:

';
echo $today; //1470844800
echo '
'; //验证当日凌晨的时间戳是否正确 echo date("Y-m-d H:i:s",$today); //2016-08-11 00:00:00 echo '
'; //当天的24点时间戳 $end = $today+60*60*24; //验证当天的24点时间戳是否正确 echo date("Y-m-d H:i:s", $end); //2016-08-12 00:00:00 echo '
'; //获得指定时间的零点的时间戳 $time = strtotime('2014-06-06'); echo '
'; echo $time; //1401984000 echo '
'; //验证是否是指定时间的时间戳 echo date("Y-m-d H:i:s",$time); //2014-06-06 00:00:00 ?>

Believe it or not After reading the case in this article, you have mastered the method. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Detailed explanation of the steps of dynamically adding XML data in PHP

Detailed explanation of the steps of dynamically deleting XML data in PHP

The above is the detailed content of Detailed explanation of the steps to obtain the zero o'clock timestamp of the day in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn