1

理由はわかりませんが、4時間前に次の日時すべてが戻ってきます

function ago($timestamp){
        $difference = floor((time() - strtotime($timestamp))/86400);
        $periods = array("second", "minute", "hour", "day", "week", "month", "years", "decade");
        $lengths = array("60","60","24","7","4.35","12","10");
        for($j = 0; $difference >= $lengths[$j]; $j++)
            $difference /= $lengths[$j];
        $difference = round($difference);
        if($difference != 1)
            $periods[$j].= "s";
        $text = "$difference $periods[$j] ago";
        return $text;
    }

私が送っている日付は

 "replydate": "29/07/2012CDT04:54:27",
"replydate": "29/07/2012CDT00:20:10",   
4

2 に答える 2

1

独自の日付/時刻関数を作成するよりも、PHP のDateTime クラスなどの標準実装を使用する方がよいでしょう。タイムゾーンや夏時間など、正確な時間を計算するには微妙な点があります。

<?php
    date_default_timezone_set('Australia/Melbourne');

    // Ideally this would use one of the predefined formats like ISO-8601
    //   www.php.net/manual/en/class.datetime.php#datetime.constants.iso8601 
    $replydate_string = "29/07/2012T04:54:27";

    // Parse custom date format similar to original question
    $replydate = DateTime::createFromFormat('d/m/Y\TH:i:s', $replydate_string);

    // Calculate DateInterval (www.php.net/manual/en/class.dateinterval.php)
    $diff = $replydate->diff(new DateTime());

    printf("About %d hour%s and %d minute%s ago\n",
        $diff->h, $diff->h == 1 ? '' : 's',
        $diff->i, $diff->i == 1 ? '' : 's'
    );
?>
于 2012-07-30T03:57:51.487 に答える
1

関数strtotimeはそのような形式をサポートしていません'29/07/2012CDT00:20:10'。そのような構文を使用してください'0000-00-00 00:00:00'。そして、の必要はありません86400。すべてのコード:

function ago($timestamp){
  $difference = time() - strtotime($timestamp);
  $periods = array('second', 'minute', 'hour', 'day', 'week', 'month', 'years', 'decade');
  $lengths = array('60', '60', '24', '7', '4.35', '12', '10');

  for($j = 0; $difference >= $lengths[$j]; $j++) $difference /= $lengths[$j];

  $difference = round($difference);
  if($difference != 1) $periods[$j] .= "s";

  return "$difference $periods[$j] ago";
}

echo ago('2012-7-29 17:20:28');
于 2012-07-29T10:21:57.127 に答える