Home  >  Article  >  Backend Development  >  How to calculate the difference between two timestamps in php

How to calculate the difference between two timestamps in php

angryTom
angryTomforward
2019-10-15 15:46:094217browse

How to calculate the difference between two timestamps in php

Code

<?php 
//功能:计算两个时间戳之间相差的日时分秒
//$begin_time 开始时间戳
//$end_time 结束时间戳
function timediff($begin_time,$end_time)
{
	if($begin_time < $end_time){
		$starttime = $begin_time;
		$endtime = $end_time;
	}else{
		$starttime = $end_time;
		$endtime = $begin_time;
	}
	//计算天数
	$timediff = $endtime-$starttime;
	$days = intval($timediff/86400);
	//计算小时数
	$remain = $timediff%86400;
	$hours = intval($remain/3600);
	//计算分钟数
	$remain = $remain%3600;
	$mins = intval($remain/60);
	//计算秒数
	$secs = $remain%60;
	$res = array("day" => $days,"hour" => $hours,"min" => $mins,"sec" => $secs);
	return $res;
}
print_r(timediff(strtotime(&#39;2015-03-20 16:20:30&#39;),strtotime(&#39;2015-05-25 11:10:10&#39;)));
?>
Recommended Manual:php Complete Self-Study Manual

Result

Array ( [day] => 65 [hour] => 18 [min] => 49 [sec] => 40 )
Recommended related articles:
1.php about date and time operations
Related video recommendations:
1.Dugu Jiujian (4)_PHP video tutorial

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of How to calculate the difference between two timestamps in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:cnblogs.com. If there is any infringement, please contact admin@php.cn delete