vote up 4 vote down star

I have video durations stored in HH:MM:SS format. I'd like to display it as HH hours, MM minutes, SS seconds. It shouldn't display hours if it's less than 1.

What would be the best approach?

flag

78% accept rate
Quesions should be posited in the form of a, er, question. What do you think this is, RentACoder? – Nathan Strong Sep 17 '08 at 5:38
Tagged as php... – Yegor Sep 17 '08 at 5:39
I edited the question to conform with site standards. – Espo Sep 17 '08 at 5:41

10 Answers

vote up 3 vote down check

try using split

list($hh,$mm,$ss)= split(':',$duration);
link|flag
I like that! Very nice! – Yegor Sep 17 '08 at 5:56
vote up 0 vote down

Why bother with regex or explodes when php handles time just fine?

$sTime   = '04:20:00';
$oTime   = new DateTime($sTime);
$aOutput = array();
if ($oTime->format('G') > 0) {
	$aOutput[] = $oTime->format('G') . ' hours';
}
$aOutput[] = $oTime->format('i') . ' minutes';
$aOutput[] = $oTime->format('s') . ' seconds';
echo implode(', ', $aOutput);

The benefit is that you can reformat the time however you like (including am/pm, adjustments for timezone, addition / subtraction, etc).

link|flag
vote up 0 vote down

I'll reply with a different approach of the problem. My approach is to store the lengths in seconds. Then depending the needs, it's easy to render these seconds as hh:mm:ss by using :

print gmdate($seconds >= 3600 ? 'H:i:s' : 'i:s', $seconds); (for your question)

or to search on the length in a database:

SELECT * FROM videos WHERE length > 300; for example, to search for video with a length higher than 5 minutes.

link|flag
vote up -1 vote down

Converting 00:00:00 to hours, minutes, and seconds in PHP is really easy.

$hours = 0; $minutes = 0; $seconds = 0;

link|flag
vote up 0 vote down

If you really want to use a built-in function, perhaps for robustness, you can try date_default_timezone_set('UTC'); $date = strtotime($hms,0); and use any of the date formatting functions (date(), strftime(), etc) to format the time in any way you wish. Or you can use the output of strptime($hms,'%T'). Either may be overkill for the simple scenario you have.

link|flag
vote up 0 vote down

Heres a different way, with different functions which is more open and a more step by step for newbies. it also handles the 1 hour and many hours... you could try use the same logic to handle the 0 minutes and 0 seconds.

<?php
// your time
$var = "00:00:00";

if(substr($var, 0, 2) == 0){
    $myTime = substr_replace(substr_replace($var, '', 0, 3), ' Minutes, ', 2, 1);
}
elseif(substr($var, 1, 1) == 1){
$myTime = substr_replace(substr_replace($var, ' Hour, ', 2, 1), ' Minutes, ', 11, 1);   
    }
else{
$myTime = substr_replace(substr_replace($var, ' Hours, ', 2, 1), ' Minutes, ', 12, 1);
}
// work with your variable
echo  $myTime .' Seconds';

?>
link|flag
vote up 1 vote down

Pretty simple:

list( $h, $m, $s) = explode(':', $hms);
echo ($h ? "$h hours, " : "").($m ? "$m minutes, " : "").(($h || $m) ? "and " : "")."$s seconds";

This will only display the hours or minutes if there are any, and inserts an "and" before the seconds if there are hours, minutes, or both to display. If you wanted to get really fancy, you could add some code to display "hour" vs. "hours" as appropriate, ditto for minutes and seconds.

link|flag
vote up -1 vote down

explode() is for pansies. This is a job for regular expressions!

<?php
preg_match('/^(\d\d):(\d\d):(\d\d)$/', $video_duration, $parts);
if ($parts[1] !== '00') {
    echo("{$parts[1]} hours, {$parts[2]} minutes, {$parts[3]} seconds");
}
else {
    echo("{$parts[2]} minutes, {$parts[3]} seconds");
}

Totally untested, but something like that ought to work. Note that this code assumes that the hour fragment will always be two digits (eg, a three-hour video would be 03:00:00 instead of 3:00:00).

EDIT: In retrospect, using regular expressions for this is probably a case of over-engineering; explode() will do the job just as well and probably even be faster in this case. But it was the first method to come to mind when I read the question.

link|flag
vote up 1 vote down

One little change could be:

$vals = explode(':', $duration);

if ( $vals[0] == 0 )
   $result = "{$vals[1]} minutes, {$vals[2]} seconds";
else
   $result = "{$vals[0]} hours, {$vals[1]} minutes, {$vals[2]} seconds";
link|flag
vote up 2 vote down

Something like this?

$vals = explode(':', $duration);

if ( $vals[0] == 0 )
   $result = $vals[1] . ' minutes, ' . $vals[2] . ' seconds';
else
   $result = $vals[0] . 'hours, ' . $vals[1] . ' minutes, ' . $vals[2] . ' seconds';
link|flag
Thats what I had in mind, but I was hoping for a more elegant solution, that would perhaps involve a built in php function. – Yegor Sep 17 '08 at 5:54
I do not think such a function exists. Anyway, if you move this code out into a seperate function instead of using it inline, it should be just as good – Nathan Reed Sep 17 '08 at 5:57
Of course such a function exists!! The DateTime Object and date(strtotime()) handle this just fine. I posted an example. – enobrev Sep 22 '08 at 20:18

Your Answer

Get an OpenID
or

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