我想在PHP中将时间字符串(例如2:12:0)转换为十进制格式(以2:12:0为2.2小时)。
答案 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;
?>