Skip to content

Instantly share code, notes, and snippets.

@techhahn
Created July 28, 2016 14:15
Show Gist options
  • Select an option

  • Save techhahn/c83430ad92d3ecba11a045f0c226155b to your computer and use it in GitHub Desktop.

Select an option

Save techhahn/c83430ad92d3ecba11a045f0c226155b to your computer and use it in GitHub Desktop.
function _ago($tm,$rcs = 0) {
$cur_tm = time(); $dif = $cur_tm-$tm;
$pds = array('sec','min','h','d','w','m','y','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