Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a variable called $final_time_saving which is just a number, 250 for example. How can I convert that into hours and minutes using PHP in this format:

4 hours 17 minutes

share|improve this question
Is this number the minute count? 250min != 4h 17min – Eugen Rieck Dec 19 '11 at 15:32
No, but Googling 250 minutes in hours returns 4.16666667 hours, so maybe that's where Rob got the figure from? – Martin Bean Dec 19 '11 at 15:34
Oops, me and maths, sigh! In principle I just want to convert a number into hours and minutes, don't let my bad maths throw you off! – Rob Dec 19 '11 at 15:38

3 Answers

up vote 7 down vote accepted
<?php

function convertToHoursMins($time, $format = '%d:%d') {
    settype($time, 'integer');
    if ($time < 1) {
        return;
    }
    $hours = floor($time/60);
    $minutes = $time%60;
    return sprintf($format, $hours, $minutes);
}

echo convertToHoursMins(250, '%d hours %d minutes'); // should output 4 hours 17 minutes
share|improve this answer
$hours = floor($final_time_saving / 60);
$minutes = $final_time_saving % 60;
share|improve this answer

@Martin Bean's answer is perfectly correct but in my point of view it needs some refactoring to fit what a regular user would expect from a website (web system).
I think that when minutes are below 10 a leading zero must be added.
ex: 10:01, not 10:1

I changed code to accept $time = 0 since 0:00 is better than 24:00.

One more thing - there is no case when $time is bigger than 1439 - which is 23:59 and next value is simply 0:00.

function convertToHoursMins($time, $format = '%d:%s') {
    settype($time, 'integer');
    if ($time < 0 || $time >= 1440) {
        return;
    }
    $hours = floor($time/60);
    $minutes = $time%60;
    if ($minutes < 10) {
        $minutes = '0' . $minutes;
    }
    return sprintf($format, $hours, $minutes);
}
share|improve this answer
2  
Good point, I agree the minutes need a leading zero. Another way you could do it would be to use the padding functionality of sprintf: echo sprintf('%02d', 2); // this echos "02" – fishwebby Apr 17 at 13:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.