Skip to content

Instantly share code, notes, and snippets.

@turtlix
Created May 13, 2016 00:59
Show Gist options
  • Save turtlix/e054500bcc115140687cccfc4f2744e5 to your computer and use it in GitHub Desktop.
Save turtlix/e054500bcc115140687cccfc4f2744e5 to your computer and use it in GitHub Desktop.
<?php
function _ago($tm,$rcs = 0) {
$cur_tm = time(); $dif = $cur_tm-$tm;
$pds = array('second','minute','hour','day','week','month','year','decade');
$lngh = array(1,60,3600,86400,604800,2630880,31570560,315705600);
for($v = sizeof($lngh)-1; ($v >= 0)&&(($no = $dif/$lngh[$v])<=1); $v--); if($v < 0) $v = 0; $_tm = $cur_tm-($dif%$lngh[$v]);
$no = floor($no); if($no <> 1) $pds[$v] .='s'; $x=sprintf("%d %s ",$no,$pds[$v]);
if(($rcs == 1)&&($v >= 1)&&(($cur_tm-$_tm) > 0)) $x .= time_ago($_tm);
return $x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment