PHP--计算两个日期之间相差的天数/小时/分钟/秒数

$res = '2019-07-24 10:10:00';
$rea = date('Y-m-d H:i:s');

$date = (strtotime($rea) - strtotime($res)) / 86400;//计算两个日期相隔天数
echo $date . '<br/>';
$hour = (strtotime($rea) - strtotime($res))%86400/3600;//计算两个日期相隔小时
echo $hour . '<br/>';
$mid = (strtotime($rea) - strtotime($res))%86400/60;//计算两个日期相隔分钟
echo $mid . '<br/>';
$sec = strtotime($rea) - strtotime($res);//计算两个日期相隔秒数
echo $sec . '<br/>';
if ((strtotime($rea) - strtotime($res)) > 24*3600) {
	echo 'yes';
} else {
	echo 'no';
}

 

上一篇:javascript中的字符串首字母转大写,字符串反转


下一篇:php计算两个时间(日期)相差的天数、小时数、分钟数、秒数