PHP秒数计算时分秒

  • Post author:
  • Post category:php


将秒数转换成时分秒,PHP提供了一个函数gmstrftime,不过该函数仅限于24小时内的秒数转换。对于超过24小时的秒数,我们应该怎么让其显示出来呢,例如25:00:00

$time= 3600*25 ;

function changeTimeType($time){


if ($time >3600){


$hours =intval($time/3600);

$minutes = $time % 3600;

$times = $hours.”:”.gmstrftime(‘%M:%S’,$minutes);

}else{


$times = gmstrftime(‘%H:%M:%S’,$time);

}

return $times;

}

转载于:https://www.cnblogs.com/leaf-cq/p/8561196.html