我想在php中将时间字符串(例如2:12:0)转换为十进制格式(例如2:12:0将是2.2小时)。

最佳答案

一个相当愚蠢的转换,从我的头顶,用冒号爆炸:

<?php

$hms = "2:12:0";
$decimalHours = decimalHours($hms);

function decimalHours($time)
{
    $hms = explode(":", $time);
    return ($hms[0] + ($hms[1]/60) + ($hms[2]/3600));
}

echo $decimalHours;

?>

08-25 21:42