55
// Difference from a date in the future:
$a = new DateTime('2000-01-01');
$b = new DateTime('2000-01-05');
$interval = $b->diff($a);
return $interval->days;             // Returns 4


// Difference from a date in the past:
$a = new DateTime('2000-01-01');
$b = new DateTime('1999-12-28');
$interval = $a->diff($b);           // Arguments swapped
return $interval->days;             // Returns 4

为什么这两个函数都返回正 4?如果日期是过去的,如何返回负数?

4

5 回答 5

77

你可以使用DateInterval::format.

return $interval->format("%r%a");

如果需要,转换为 int:

return (int)$interval->format("%r%a");

于 2013-03-14T22:20:48.210 回答
26

如果 Date 在过去,则反转为 1。
如果 Date 在未来,则反转为 0。

$invert    = $interval->invert; 
于 2016-11-16T05:41:54.110 回答
10

这是你的答案:

$today = new DateTime();
$date = new DateTime('2013-03-10');
$interval = $today->diff($date);
echo $interval->format("%r%a");

在这里测试

于 2013-03-14T22:49:22.683 回答
4

当您比较两个 DateTime 对象时,以下规则适用:

$objA->diff($objB) == $objB - $objA

举个例子:

$todayDateObj = new \DateTime('2016/5/26');
$foundedDateObj = new \DateTime('1773/7/4');

$interval = $todayDateObj->diff($foundedDateObj);
echo $interval->format('%r%a') . "\n\n";
// -88714

$interval2 = $foundedDateObj->diff($todayDateObj);
echo $interval2->format('%r%a');
// 88714
于 2016-06-24T18:22:45.170 回答
2

你可以像这样使用时间戳。

<?php 
    $date1 = '2015-01-02';
    $date2 = '2015-01-05';
    $diff = strtotime($date1, 'Y-m-d') - strtotime($date2, 'Y-m-d'); 
?>

$diff 将返回负数或正数。

于 2015-12-02T04:37:53.393 回答