微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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';
}

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐