function hmsToSeconds($hms) { list($hour, $min) = explode(":", $hms); return $hour * 3600 + $min * 60; }