3

我有一些总小时数,需要计算平均值。例如,我的总小时值为 2452:43:44 (H:m:s),总计数为 15。我想以相同的格式获取平均时间,即小时:分钟:秒。我们如何在 PHP 中做到这一点?

4

4 回答 4

4
function average_time($total, $count, $rounding = 0) {
    $total = explode(":", strval($total));
    if (count($total) !== 3) return false;
    $sum = $total[0]*60*60 + $total[1]*60 + $total[2];
    $average = $sum/(float)$count;
    $hours = floor($average/3600);
    $minutes = floor(fmod($average,3600)/60);
    $seconds = number_format(fmod(fmod($average,3600),60),(int)$rounding);
    return $hours.":".$minutes.":".$seconds;
}
echo average_time("2452:43:44", 15); // prints "163:30:55"
echo average_time("2452:43:44", 15, 2); // prints "163:30:54.93"
于 2013-02-05T12:56:09.627 回答
2

接近安东尼的解决方案,但有给定的数组hours

$time = array (
            '2452:43:44',
            '452:43:44',
            '242:43:44',
            '252:43:44',
            '2:43:44'
        );

$seconds = 0;
foreach($time as $hours) {
    $exp = explode(':', strval($hours));
    $seconds += $exp[0]*60*60 + $exp[1]*60 + $exp[2];
}

$average = $seconds/sizeof( $time );
echo floor($average/3600).':'.floor(($average%3600)/60).':'.($average%3600)%60;
于 2013-02-05T13:06:56.053 回答
1
$totalhourandmunite+=str_replace(":",'',$date);
strtoheur(round($totalhourandmunite/$nbdate,0));
function strtoheur($temp)
{
    if(strlen($temp)==1) return $temp;
    if(strlen($temp)==2)
        $temp=$temp."00";
    if(strlen($temp)==3)
        $temp="0".$temp;
    $temp=str_split($temp);
    $heure=$temp["0"].$temp["1"];
    $min=$temp["2"].$temp["3"];
    if($min/60>1)
    {
        $min=$min%60;
        $heure++;
    }
    if($min<10 && strlen($min)==1)
        $min="0".$min;
    if($heure>23)
    {
        $heure=$heure%24;
    }
    $temp=$heure.":".$min;
    return $temp;
}
于 2021-05-03T01:42:21.637 回答
0
  1. 最好的方法是以秒为单位更改总小时值。
  2. 除以总计数值。你将得到的是平均秒数。
  3. 将平均值转换回 H:m:s 格式。
于 2013-02-05T12:56:45.563 回答