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

How to calculate the difference between two timestamps in php

angryTom
Release: 2023-04-07 16:44:02
forward
4255 people have browsed it

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;)));
?>
Copy after login
Recommended Manual:php Complete Self-Study Manual

Result

Array ( [day] => 65 [hour] => 18 [min] => 49 [sec] => 40 )
Copy after login
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!

Related labels:
source:cnblogs.com
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template