前端之家收集整理的这篇文章主要介绍了
将时间字符串转换为小数小时PHP,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在PHP中将时间字符串(例如2:12:0)转换为小时格式(ex 2:12:0将是2.2小时).
最佳答案
使用冒号爆炸从我的头顶进行相当愚蠢的转换:@H_
404_6@
@H_404_6@
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;
?>