php时间函数工作然后停止工作

时间:2017-09-11 09:33:04

标签: php mysql

所以我发现这个代码来自下面的链接,它在2天前运行良好,但随后就停止了工作。当我从mysql CURRENT TIMESTAMP给它时间时,它只需输出8,7或6小时,无论它有多长时间。如果有人知道如何改进这个或更好的方式来做这个功能请在这里提交或给我一个链接。我已经在php 5.6和php 7上尝试了它,但都没有解决它。

示例:

$ time = 2017-09-11 17:10:51

输入:

time_elapsed_string($时间);

输出:

5小时前

#function from https://stackoverflow.com/questions/1416697/converting-timestamp-to-time-ago-in-php-e-g-1-day-ago-2-days-ago
function time_elapsed_string($datetime, $full = false) {
    $now = new DateTime;
    $ago = new DateTime($datetime);
    $diff = $now->diff($ago);

    $diff->w = floor($diff->d / 7);
    $diff->d -= $diff->w * 7;

    $string = array(
        'y' => 'year',
        'm' => 'month',
        'w' => 'week',
        'd' => 'day',
        'h' => 'hour',
        'i' => 'minute',
        's' => 'second',
    );
    foreach ($string as $k => &$v) {
        if ($diff->$k) {
            $v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : '');
        } else {
            unset($string[$k]);
        }
    }

    if (!$full) $string = array_slice($string, 0, 1);
    return $string ? implode(', ', $string) . ' ago' : 'just now';
}

1 个答案:

答案 0 :(得分:0)

  

当我从mysql CURRENT TIMESTAMP给它时间时,它只输出8,7或6小时,无论它已经有多长时间

这听起来像你的MySQL服务器和你的PHP服务器在不同的时区运行。

您提供的代码示例不考虑时区,而只是计算给定日期和当前时间之间的本地时差量。

要考虑不同的时区,您可以使用DateTime::setTimezonehttp://php.net/manual/en/datetime.settimezone.php

示例:

$date = new DateTime('2000-01-01', new DateTimeZone('Pacific/Nauru'));
echo $date->format('Y-m-d H:i:sP') . "\n"; // 2000-01-01 00:00:00+12:00

$date->setTimezone(new DateTimeZone('Pacific/Chatham'));
echo $date->format('Y-m-d H:i:sP') . "\n"; // 2000-01-01 01:45:00+13:45