私は以下のような時間の配列を持っています:
Array
(
[0] => 00:00:04
[1] => 00:00:05
[2] => 00:00:02
[3] => 00:00:09
[4] => 00:00:03
[]...
)
そして、以下のコードを使用して平均時間を計算しようとしています:
foreach($times as $t) {
$unixtime += strtotime($t);
}
$unixtime = $unixtime / count($times);
echo "Unix Time: " . $unixtime . "<br />";
echo "Formatted: " . date("h:i:s",$unixtime) . "<p/>";
しかし、私が得ている出力は次のとおりです。
Unix 時間: 1345669204.37 フォーマット: 12:00:04
誰かが私が間違っていることを教えてもらえますか?