您现在的位置是:网站首页>PHPPHP

[php]秒数转换成年、月、日、分、秒格式

左鹏02-13 10:08:30PHP4,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;
}

文章评论

    请先说点什么
    热门评论
    0人参与,0条评论
    正在载入评论列表...

    站点信息

    • 建站时间:2018-09-18
    • 网站程序:Spring Boot
    • 主题模板:《今夕何夕》
    • 文章统计:104条
    • 微信公众号:扫描二维码,关注我们
    登陆您的账户