Making time periods readable
This is a flexible function for making time periods readable.
It allows for the conversion of an integer number of seconds into a readable string. For example, “121” into “2 minutes, 1 second”.
The $use
parameter allows you to define which time periods should be used (default is null, which is all time periods). The $zeros
parameter allows you to set whether zero time periods should be displayed, e.g. “0 years, 0 months” (defaults to false).
<?php
/**
* A function for making time periods readable
*
* @author Aidan Lister <aidan@php.net>
* @version 2.0.1
* @link http://aidanlister.com/2004/04/making-time-periods-readable/
* @param int number of seconds elapsed
* @param string which time periods to display
* @param bool whether to show zero time periods
*/
function time_duration($seconds, $use = null, $zeros = false)
{
// Define time periods
$periods = array (
'years' => 31556926,
'Months' => 2629743,
'weeks' => 604800,
'days' => 86400,
'hours' => 3600,
'minutes' => 60,
'seconds' => 1
);
// Break into periods
$seconds = (float) $seconds;
$segments = array();
foreach ($periods as $period => $value) {
if ($use && strpos($use, $period[0]) === false) {
continue;
}
$count = floor($seconds / $value);
if ($count == 0 && !$zeros) {
continue;
}
$segments[strtolower($period)] = $count;
$seconds = $seconds % $value;
}
// Build the string
$string = array();
foreach ($segments as $key => $value) {
$segment_name = substr($key, 0, -1);
$segment = $value . ' ' . $segment_name;
if ($value != 1) {
$segment .= 's';
}
$string[] = $segment;
}
return implode(', ', $string);
}
?>
Let’s have a look at some examples:
<?php
echo time_duration(100000000);
echo time_duration(100000000, null, true);
echo time_duration(100000000, 'yMw');
echo time_duration(100000000, 'd');
?>
This would produce the following output:
3 years, 2 months, 19 hours, 22 minutes, 16 seconds
3 years, 2 months, 0 weeks, 0 days, 19 hours, 22 minutes, 16 seconds
3 years, 2 months
1157 days