這是可以具體到小時的php程式碼
複製程式碼 程式碼如下:
/* Author: 楊宇yangyu@sina .cn */
//輸入兩個時間戳,計算差值,也就是相差的小時數,如返回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;
}
複製程式碼 程式碼如下:
function get_date_different(){
function get_date_different(){
var _date_different( 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_111 .getTime();
var time = parseInt(days / (1000 * 60 * 60 * 24));
以上就介紹了 php 計算兩個時間戳相隔的時間的函數小時,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。