Skip to content

Instantly share code, notes, and snippets.

@winsonwq
Created January 17, 2014 01:56
Show Gist options
  • Select an option

  • Save winsonwq/8467197 to your computer and use it in GitHub Desktop.

Select an option

Save winsonwq/8467197 to your computer and use it in GitHub Desktop.
"time ago" function
<?php
function ago($time)
{
$periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade");
$lengths = array("60","60","24","7","4.35","12","10");
$now = time();
$difference = $now - $time;
$tense = "ago";
for($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) {
$difference /= $lengths[$j];
}
$difference = round($difference);
if($difference != 1) {
$periods[$j].= "s";
}
return "$difference $periods[$j] 'ago' ";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment