Skip to content

Instantly share code, notes, and snippets.

@xhinking
Created July 25, 2012 04:01
Show Gist options
  • Save xhinking/3174305 to your computer and use it in GitHub Desktop.
Save xhinking/3174305 to your computer and use it in GitHub Desktop.
PHP timeline function
<?php
function tranTime($time) {
$rtime = date("m-d H:i",$time);
$htime = date("H:i",$time);
$time = time() - $time;
if ($time < 60) {
$str = '刚刚';
}
elseif ($time < 60 * 60) {
$min = floor($time/60);
$str = $min.'分钟前';
}
elseif ($time < 60 * 60 * 24) {
$h = floor($time/(60*60));
$str = $h.'小时前 '.$htime;
}
elseif ($time < 60 * 60 * 24 * 3) {
$d = floor($time/(60*60*24));
if($d==1)
$str = '昨天 '.$rtime;
else
$str = '前天 '.$rtime;
}
else {
$str = $rtime;
}
return $str;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment