本文实例讲述了PHP自定义函数实现格式化秒的方法。分享给大家供大家参考,具体如下:
function vtime($time) { $output = ''; foreach (array(86400 => '天', 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程序设计有所帮助。