sql >> Database >  >> RDS >> Mysql

Zet tijdreeks om in decimale uren PHP

Een nogal domme conversie vanuit mijn hoofd, met exploderen per dubbele punt:

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

?>



  1. Hoe de Exp()-functie werkt in PostgreSQL

  2. 'LIKE ('%this%' OR '%that%') en iets=anders' werkt niet

  3. Android JDBC werkt niet:ClassNotFoundException op stuurprogramma

  4. Hoe PLAFOND() werkt in MariaDB