本文是一个php实现的可以计算两个时间戳相隔的时间,需要的朋友可以参考下。 这个是可以具体到小时的php代码 //输入两个时间戳,计算差值,也就是相差的小时数,如返回2:10,则表示输入的两个时间相差2小时10分钟 function hours_min($start_time,$end_time){ if (strtotime($start_time) > strtotime($end_time)) list($start_time, $end_time) = array($end_time, $start_time); $sec = $start_time - $end_time; $sec = round($sec/60); $min = str_pad($sec%60, 2, 0, STR_PAD_LEFT); $hours_min = floor($sec/60); $min != 0 && $hours_min .= ':'.$min; return $hours_min; } 下面这个是具
本文是一个php实现的可以计算两个时间戳相隔的时间,需要的朋友可以参考下。
这个是可以具体到小时的php代码
//输入两个时间戳,计算差值,也就是相差的小时数,如返回2:10,则表示输入的两个时间相差2小时10分钟
function hours_min($start_time,$end_time){
if (strtotime($start_time) > strtotime($end_time)) list($start_time, $end_time) = array($end_time, $start_time);
$sec = $start_time - $end_time;
$sec = round($sec/60);
$min = str_pad($sec%60, 2, 0, STR_PAD_LEFT);
$hours_min = floor($sec/60);
$min != 0 && $hours_min .= ':'.$min;
return $hours_min;
}
下面这个是具体到天数的函数代码js
function get_date_different(){
var _date_1 = document.getElementById('date1').value.replace(/(^s*)|(s*$)/g,'');
var _date_2 = document.getElementById('date2').value.replace(/(^s*)|(s*$)/g,'');
_date_1 = new Date(_date_1);
_date_2 = new Date(_date_2);
var days= _date_2.getTime() - _date_1.getTime();
var time = parseInt(days / (1000 * 60 * 60 * 24));
document.getElementById('content').innerHTML = '两个日期相差 <strong style="color:red">'+time+'</strong> 天!';}</script>
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!