0
在Twitter的RSS提要的pubdate的發佈爲Twitter的RSS格式pubdate的
週六,2010年6月5日19:20
使用PHP,最新最好的方式將其轉換成lasped時間公佈以來。對於eaxmple,
發佈4分鐘前 發佈時間1小時前 發表於4小時前 1天前 2天前 發佈1個月前 發佈2個月前
你幫助非常感謝
在Twitter的RSS提要的pubdate的發佈爲Twitter的RSS格式pubdate的
週六,2010年6月5日19:20
使用PHP,最新最好的方式將其轉換成lasped時間公佈以來。對於eaxmple,
發佈4分鐘前 發佈時間1小時前 發表於4小時前 1天前 2天前 發佈1個月前 發佈2個月前
你幫助非常感謝
function how_long_ago($unixTime) {
$chunks = array(
array(60 * 60 * 24 * 365 , 'year'),
array(60 * 60 * 24 * 30 , 'month'),
array(60 * 60 * 24 * 7, 'week'),
array(60 * 60 * 24 , 'day'),
array(60 * 60 , 'hour'),
array(60 , 'minute'),
);
$today = time();
$since = $today - $unixTime;
for ($i = 0, $j = count($chunks); $i < $j; $i++) {
$seconds = $chunks[$i][0];
$name = $chunks[$i][1];
if (($count = floor($since/$seconds)) != 0) {
break;
}
}
return $count == 1 ? '1 '.$name : "$count {$name}s";
}
$rssUnixTime = strtotime('Sat, Jun 5, 2010 19:20');
echo 'posted '.how_long_ago($rssUnixTime).' ago';