0

この日付を表示どおりに変換する軽量関数を探しています " Thu Sep 19 08:43:29 +0000 2013 "

何か案は?

4

3 に答える 3

7

時間前機能

function time_ago($date) {
    if (empty($date)) {
        return "No date provided";
    }
    $periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade");
    $lengths = array("60", "60", "24", "7", "4.35", "12", "10");
    $now = time();
    $unix_date = strtotime($date);
// check validity of date
    if (empty($unix_date)) {
        return "Bad date";
    }
// is it future date or past date
    if ($now > $unix_date) {
        $difference = $now - $unix_date;
        $tense = "ago";
    } else {
        $difference = $unix_date - $now;
        $tense = "from now";
    }
    for ($j = 0; $difference >= $lengths[$j] && $j < count($lengths) - 1; $j++) {
        $difference /= $lengths[$j];
    }
    $difference = round($difference);
    if ($difference != 1) {
        $periods[$j].= "s";
    }
    return "$difference $periods[$j] {$tense}";
}

この関数を使用するには、次のように呼び出します。

<?php echo time_ago($mydate); ?>

ソース

于 2013-09-19T09:50:40.827 に答える
1

便利な DateTime クラスを使用できます。

$oDate = new DateTime('Thu Sep 19 08:43:29 +0000 2013');
$oNow = new DateTime();
$oInterval = $oDate->diff($oNow);
echo $oInterval->format('%R%a days');

これにより、現在と日付の差が日単位で表示されます。

+0 日

于 2013-09-19T09:58:50.640 に答える
0

使用例:

echo time_elapsed_string('Thu Sep 19 08:43:29 +0000 2013');
echo time_elapsed_string('Thu Sep 19 08:43:29 +0000 2013', true);

出力:

1 hour ago
1 hour, 35 minutes, 7 seconds ago

関数にリンクします。

于 2013-09-19T10:17:28.687 に答える