当前位置:Gxlcms > PHP教程 > PHP根据秒PHP持续时长的方法

PHP根据秒PHP持续时长的方法

时间:2021-07-01 10:21:17 帮助过:32人阅读

这篇文章主要介绍了关于PHP根据秒计算持续时长的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

/**
 * 计算持续时长
 *
 * @param int $second 秒数
 * @return string $duration 5天10小时43分钟40秒 
 */
 function second2duration($seconds)
{    
$duration = '';    
$seconds  = (int) $seconds;    
if ($seconds <= 0) {        
return $duration;
    }    
    list($day, $hour, $minute, $second) = explode(' ', gmstrftime('%j %H %M %S', $seconds));    
    $day -= 1;    
    if ($day > 0) {        
    $duration .= (int) $day.'天';
    }    
    if ($hour > 0) {        
    $duration .= (int) $hour.'小时';
    }    
    if ($minute > 0) {        
    $duration .= (int) $minute.'分钟';
    }    
    if ($second > 0) {        
    $duration .= (int) $second.'秒';
    }    
    return $duration;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

php 计算两个文件的相对路径的方法

以上就是PHP根据秒PHP持续时长的方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行