本文实例讲述了PHP自定义函数实现格式化秒的方法。分享给大家供大家参考,具体如下:
'天',3600 => '小时',60 => '分',1 => '秒') as $key => $value) {
if ($time >= $key) $output .= floor($time/$key) . $value;
$time %= $key;
}
if($output==''){
$output=0;
}
return $output;
}
//$now=time();
$oldtime=86465;
//echo vtime($now);//输出:17058天4小时8分55秒
echo vtime($oldtime);//输出:1天1分5秒
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》、《》及《》
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/19037.html