最新消息: 新版网站上线了!!!

php格式化秒的方法

  1. /** 
  2.  * PHP 格式化秒 
  3.  */ 
  4. function vtime($time) { 
  5.     $output = ''
  6.     foreach (array(86400 => '天', 3600 => '小时', 60 => '分', 1 => '秒'as $key => $value) { 
  7.         if ($time >= $key$output .= floor($time/$key) . $value
  8.         $time %= $key
  9.     } 
  10.     if($output==''){ 
  11.         $output=0; 
  12.     } 
  13.     return $output

 

转载请注明:谷谷点程序 » php格式化秒的方法