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

前端之家收集整理的这篇文章主要介绍了将时间字符串转换为小数小时PHP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在PHP中将时间字符串(例如2:12:0)转换为小时格式(ex 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;

?>
原文链接:https://www.f2er.com/mysql/434277.html

猜你在找的MySQL相关文章