PHP自定义函数实现格式化秒的方法

时间:2022-09-12 11:42:28

本文实例讲述了PHP自定义函数实现格式化秒的方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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程序设计有所帮助。