Quick Search:
 
 PHP Code: Convert Minutes to Hours Jump to:  
Category: >> PHP Code >> Convert Minutes to Hours  

<< lastnext >>

Snippet Name: Convert Minutes to Hours

Description: Another "Minutes to Hours" conversion script.

Also see:
» Get Relative Dates and Times
» Convert Seconds to Hours:Minutes:Secon...
» Convert UK Dates To mySQL Format Dates
» Convert miles to feet, feet to miles, ...
» Calculate the difference between two t...
» Converting Rows to Columns
» CONVERT
» Convert text to soundex
» Convert between Decimal, Binary, Octal...
» Convert LONGs to LOBs
» Convert Minutes to Hours
» Convert Hours to Minutes
» Basic currency conversion Convert 1 d...
» Update or convert DB field to uppercase
» Convert Standard time to 24-hour time ...
» Convert Hex to Decimal, Decimal to Hex
» Days in month #2
» Days in month one
» Convert minutes to hours #2
» Convert minutes to hours one
» Convert HTML to plain text
» Convert BBCode Tags

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<? php
 
FUNCTION m2h($mins) { 
            IF ($mins < 0) { 
                $min = ABS($mins); 
            } ELSE { 
                $min = $mins; 
            } 
            $H = FLOOR($min / 60); 
            $M = ($min - ($H * 60)) / 100; 
            $hours = $H   $M; 
            IF ($mins < 0) { 
                $hours = $hours * (-1); 
            } 
            $expl = EXPLODE(".", $hours); 
            $H = $expl[0]; 
            IF (EMPTY($expl[1])) { 
                $expl[1] = 00; 
            } 
            $M = $expl[1]; 
            IF (STRLEN($M) < 2) { 
                $M = $M . 0; 
            } 
            $hours = $H . "." . $M; 
            RETURN $hours; 
    } 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org