PHP完全自学手册(珍藏版) 中文pdf扫描版下载
- /**
- * 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;
- }
转载请注明:谷谷点程序 » php格式化秒的方法