Skip to content

Instantly share code, notes, and snippets.

@gabrysiak
Created August 14, 2014 19:50
Show Gist options
  • Save gabrysiak/068b808572c94fb0eb19 to your computer and use it in GitHub Desktop.
Save gabrysiak/068b808572c94fb0eb19 to your computer and use it in GitHub Desktop.
<?php
/**
* Display time ago
* @param mixed $time strtotime of timestamp
* @return mixed string containing time ago since passed param
*/
public static function time_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] ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment