码迷,mamicode.com
首页 > 其他好文 > 详细

时间相减得到时分秒

时间:2018-07-19 13:42:48      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:col   时间   时分秒   second   lse   public   str   cti   this   

public function secToTime($times){
$result = ‘00:00:00‘;
if ($times>0) {
$hour = floor($times/3600);
$minute = floor(($times-3600 * $hour)/60);
$second = floor((($times-3600 * $hour) - 60 * $minute) % 60);

$result = $this->len($hour).‘:‘.$this->len($minute).‘:‘.$this->len($second);
}
return $result;
}

public function len($str){
if(strlen($str) == 1){
$time = ‘0‘.$str;
}else{
$time = $str;
}
return $time;
}

时间相减得到时分秒

标签:col   时间   时分秒   second   lse   public   str   cti   this   

原文地址:https://www.cnblogs.com/caoql/p/9334898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!