Created
May 21, 2018 20:47
-
-
Save haseeb2k9/0bc7306c10966464cdf05eef46ea950a to your computer and use it in GitHub Desktop.
calculate the difference between two dates using PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function time_diff_string($from, $to, $full = false) { | |
$from = new DateTime($from); | |
$to = new DateTime($to); | |
$diff = $to->diff($from); | |
$diff->w = floor($diff->d / 7); | |
$diff->d -= $diff->w * 7; | |
$string = array( | |
'y' => 'year', | |
'm' => 'month', | |
'w' => 'week', | |
'd' => 'day', | |
'h' => 'hour', | |
'i' => 'minute', | |
's' => 'second', | |
); | |
foreach ($string as $k => &$v) { | |
if ($diff->$k) { | |
$v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : ''); | |
} else { | |
unset($string[$k]); | |
} | |
} | |
if (!$full) $string = array_slice($string, 0, 1); | |
return $string ? implode(', ', $string) . ' ago' : 'just now'; | |
} | |
/** | |
* Example | |
*/ | |
echo time_diff_string('2018-05-22 1:27:43', 'now'); | |
echo "<hr>"; | |
echo time_diff_string('2018-04-14 15:27:43', 'now', true); | |
/** | |
* Output | |
*/ | |
2 hours ago | |
1 month, 1 week, 7 hours, 12 minutes, 43 seconds ago |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment