我找到了一个函数形式 SC 来输出人类可读的时间。像`
5 小时、1 小时、5 年等
function human_time ($time)
{
$time = time() - strtotime($time); // to get the time since that moment
$tokens = array (
31536000 => 'year',
2592000 => 'month',
604800 => 'week',
86400 => 'day',
3600 => 'hour',
60 => 'minute',
1 => 'second'
);
foreach ($tokens as $unit => $text) {
if ($time < $unit) continue;
$numberOfUnits = floor($time / $unit);
return $numberOfUnits.' '.$text.(($numberOfUnits>1)?'s':'');
}
}
我有时间作为字符串:2013-09-28 20:55:42
当我调用这个函数时human_time('2013-09-28 20:55:42')
然后它什么也没返回,为什么?我strtotime
在上面的功能中添加了。
请告诉我有什么问题。