0

我找到了一个函数形式 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在上面的功能中添加了。

请告诉我有什么问题。

4

2 回答 2

1

这不是现成的代码,而是应该以正确的方式指导您:

$then = new DateTime($time); // you might need to format $time using strtotime or other functions depending on the format provided
$now = new DateTime();
$diff = $then->diff($now, true);
echo $diff->format('Your style goes here');

有关更多文档,请参阅DateTime Manual或随时在此处询问。

编辑:链接已修复。

于 2013-09-28T15:51:02.863 回答
1

使用示例:

echo time_elapsed_string('2013-05-01 00:22:35');
echo time_elapsed_string('2013-05-01 00:22:35', true);

输出 :

4 months ago
4 months, 2 weeks, 3 days, 1 hour, 49 minutes, 15 seconds ago

链接到函数。

于 2013-09-29T22:36:40.433 回答