Convert minutes to hours
Login or Register to Bookmark this snippet
Function to convert minutes to hours
<?php
function m2h($mins) {
if ($mins < 0) {
} else {
$min = $mins;
}
$M = ($min - ($H * 60)) / 100;
$hours = $H + $M;
if ($mins < 0) {
$hours = $hours * (-1);
}
$H = $expl[0];
$expl[1] = 00;
}
$M = $expl[1];
$M = $M . 0;
}
$hours = $H . "." . $M;
return $hours;
}
?>
Added by JC on 14th November, 2007
There are no comments about this snippet.
You must be registered and logged in to post a comment.
Login here to post a comment