Is there any convenient way to convert seconds into more specific format.

For example:

I want to convert

559 seconds

to

9 min 19 sec
link|improve this question

division by 60 :) – Ibu Jun 2 '11 at 5:25
also using modulus % – Ibu Jun 2 '11 at 5:26
feedback

6 Answers

up vote 4 down vote accepted

gmdate can be used

echo gmdate("H:i:s", 559 );
link|improve this answer
2  
+1, the best code, is the code you don't have to write. – Mark Tomlin Jun 2 '11 at 5:27
And what happens when the number of seconds is 86,401? -1. – ceejayoz Jun 2 '11 at 18:14
feedback
$seconds = 559;

$minutes = floor($seconds / 60);  // 9
$seconds = $seconds % 60;         // 19
link|improve this answer
1  
I think you mean $minutes = floor($seconds / 60); as it isn't Python? – Xaerxess Jun 2 '11 at 5:48
Ah, I guess I do, thanks – Jeremy Ruten Jun 2 '11 at 18:13
feedback

See http://dev.kafol.net/2008/09/php-calculating-time-span-duration.html

 $days = floor($seconds/60/60/24);
 $hours = $seconds/60/60%24;
 $mins = $seconds/60%60;
 $secs = $seconds%60;

 $duration='';
 if($days>0) $duration .= "$days days ";
 if($hours>0) $duration .= "$hours hours ";
 if($mins>0) $duration .= "$mins minutes ";
 if($secs>0) $duration .= "$secs seconds ";
link|improve this answer
feedback

The following is a PHP version that I made of some SmallC native code that is shipped with AMX Mod X.

<?php
/**
 * PHPInSimMod - Time Module
 * @package PRISM
 * @subpackage Time
 * @copyright the AMX Mod X Development Team & The PRISM Devlopment Team.
*/

class Time
{
    // Time unit types.
    const UNIT_SECONDS      = 0;
    const UNIT_MINUTES      = 1;
    const UNIT_HOURS        = 2;
    const UNIT_DAYS         = 3;
    const UNIT_WEEKS        = 4;

    // The number of seconds that are in each time unit.
    const SECONDS_IN_MINUTE = 60;
    const SECONDS_IN_HOUR   = 3600;
    const SECONDS_IN_DAY    = 86400;
    const SECONDS_IN_WEEK   = 604800;

    /**
     * @desc: By Brad for AMX Mod X.
     * @param: Unit - The number of time units you want translated into verbose text.
     * @param: Type - The type of unit (i.e. seconds, minutes, hours, days, weeks) that you are passing in.
    */
    static function getLength($unit, $type = Time::UNIT_SECONDS)
    {
        # Ensure the varables are of the correct datatype.
        $unit = (int) $unit;
        $type = (int) $type;

        # If our units happens to equal zero, skip.
        if ($unit == 0)
            return '0 seconds';

        # Determine the number of each time unit there are.
        $weeks = 0; $days = 0; $hours = 0; $minutes = 0; $seconds = 0;

        # Handle the various scales of time.
        switch ($type)
        {
            case Time::UNIT_SECONDS: $seconds = $unit;
            case Time::UNIT_MINUTES: $seconds = $unit * Time::SECONDS_IN_MINUTE;
            case Time::UNIT_HOURS:   $seconds = $unit * Time::SECONDS_IN_HOUR;
            case Time::UNIT_DAYS:    $seconds = $unit * Time::SECONDS_IN_DAY;
            case Time::UNIT_WEEKS:   $seconds = $unit * Time::SECONDS_IN_WEEK;
        }

        # How many weeks left?
        $weeks = $seconds / Time::SECONDS_IN_WEEK;
        $seconds -= ($weeks * Time::SECONDS_IN_WEEK);

        # How many days left?
        $days = $seconds / Time::SECONDS_IN_DAY;
        $seconds -= ($days * Time::SECONDS_IN_DAY);

        # How many hours left?
        $hours = $seconds / Time::SECONDS_IN_HOUR;
        $seconds -= ($hours * Time::SECONDS_IN_HOUR);

        # How many minutes left?
        $minutes = $seconds / Time::SECONDS_IN_MINUTE;
        $seconds -= ($minutes * Time::SECONDS_IN_MINUTE);

        # Seconds are the base unit, so it's handled intrinsically

        // Translate the unit counts into verbose text
        $timeElement = array();

        if ($weeks > 0)
            $timeElement[] = sprintf("%i %s", $weeks, ($weeks == 1) ? "week" : "weeks");
        if ($days > 0)
            $timeElement[] = sprintf("%i %s", $days, ($days == 1) ? "day" : "days");
        if ($hours > 0)
            $timeElement[] = sprintf("%i %s", $hours, ($hours == 1) ? "hour" : "hours");
        if ($minutes > 0)
            $timeElement[] = sprintf("%i %s", $minutes, ($minutes == 1) ? "minute" : "minutes");
        if ($seconds > 0)
            $timeElement[] = sprintf("%i %s", $seconds, ($seconds == 1) ? "second" : "seconds");

        // Outputs are final result in the correct format.
        switch(count($timeElement))
        {
            case 1: return sprintf("%s", $timeElement[0]);
            case 2: return sprintf("%s & %s", $timeElement[0], $timeElement[1]);
            case 3: return sprintf("%s, %s & %s", $timeElement[0], $timeElement[1], $timeElement[2]);
            case 4: return sprintf("%s, %s, %s & %s", $timeElement[0], $timeElement[1], $timeElement[2], $timeElement[3]);
            case 5: return sprintf("%s, %s, %s, %s & %s", $timeElement[0], $timeElement[1], $timeElement[2], $timeElement[3], $timeElement[4]);
        }
    }
}

?>
link|improve this answer
feedback

You can do this:

$sec = 559;

$min = floor($sec / 60);
$sec = $sec % 60; // 19
link|improve this answer
I apologize about the formatting, I am on my iPhone currently. – phpkido Jun 2 '11 at 5:34
feedback

The only disadvantages to using gmdate("H:i:s",$foo) is that it only works for $foo between 0 and 86399 and it gives you leading zeroes where you may or may not want them. Here's a solution I've used which only uses gmdate() when our timespan is large:

function formatTimeSpan($span) { 
  if ($span < (60)) { //--- less than a minute
    $r = $span." sec";  # just use the seconds as they are
  }
  elseif ($span < (60*60)) { //--- a minute to under an hour
    $min = intval($span/60);
    $sec = $span - ($min*60);
    $r = $min." min, ".$sec." sec";
  }
  elseif ($span < (24*60*60)) { //--- an hour to under a day
    $r = gmdate("G:i:s",$span);
  }
  else { //--- a day or more
    $days = intval($span/(24*60*60));
    $remSec = $span - ($days * (24*60*60));
    $r = $days." d, ".gmdate("G:i:s",$remSec); 
  }

  return $r;
}

Usage/output is as follows:

echo formatTimeSpan(3);      // 3 sec
echo formatTimeSpan(59);     // 59 sec
echo formatTimeSpan(60);     // 1 min, 0 sec
echo formatTimeSpan(559);    // 9 min, 19 sec
echo formatTimeSpan(3667);   // 1:01:07
echo formatTimeSpan(85483);  // 23:44:43
echo formatTimeSpan(86901);  // 1 d, 00:08:21

Obviously, if you want output more like 1 hr, 1 min, 7 sec, you can take gmdate() out entirely and modify the formatting/strings to suit your tastes/needs.

Small caveats, though: This doesn't check to see if the "units" should be singular or plural, thus I used abbreviations like "sec", "min", etc. Also, it doesn't check if there are 0 of any unit; you might rather 1 min, 0 sec be expressed simply as 1 min.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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