您现在的位置是:网站首页>PHPPHP
[php]秒数转换成年、月、日、分、秒格式
左鹏02-13 10:08:30【PHP】4,697人已围观
简介秒数转换成年、月、日、分、秒格式 var_dump(vtime(12111111)); function vtime($time){ $output = ''; foreach (array(86400 => '天', 3600 => '小时', 60 => '分', 1 => '秒') as $key => $value) { if ($time >= $key) $output .= floor($time/$key) . $value;
秒数转换成年、月、日、分、秒格式
var_dump(vtime(12111111)); function vtime($time){ $output = ''; foreach (array(86400 => '天', 3600 => '小时', 60 => '分', 1 => '秒') as $key => $value) { if ($time >= $key) $output .= floor($time/$key) . $value; $time %= $key; } return $output; }
点击排行
本栏推荐
猜你喜欢
站点信息
- 建站时间:2018-09-18
- 网站程序:Spring Boot
- 主题模板:《今夕何夕》
- 文章统计:104条
- 微信公众号:扫描二维码,关注我们