我想显示像 twitter 和 FB 这样的时间格式(3 小时前发布,2 分钟前发布等等......)
我试过这段代码没有成功:
function format_interval($timestamp, $granularity = 2) {
$units = array('1 year|@count years' => 31536000, '1 week|@count weeks' => 604800, '1 day|@count days' => 86400, '1 hour|@count hours' => 3600, '1 min|@count min' => 60, '1 sec|@count sec' => 1);
$output = '';
foreach ($units as $key => $value) {
$key = explode('|', $key);
if ($timestamp >= $value) {
$floor = floor($timestamp / $value);
$output .= ($output ? ' ' : '') . ($floor == 1 ? $key[0] : str_replace('@count', $floor, $key[1]));
$timestamp %= $value;
$granularity--;
}
if ($granularity == 0) {
break;
}
}
我将此函数与回调一起使用到另一个函数中,例如: $this->format_interval(); 并将其传递给我的视图
我当前的格式日期是:2012-07-26 09:31:pm并且已经存储在我的数据库中
任何帮助将不胜感激!