将时间字符串转换为小数小时PHP

时间:2012-11-28 00:47:55

标签: php mysql time format

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

1 个答案:

答案 0 :(得分:19)

从我的头顶开始相当愚蠢的转换,使用冒号爆炸:

<?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;

?>