📜  PHP | DateTime diff()函数

📅  最后修改于: 2022-05-13 01:56:26.059000             🧑  作者: Mango

PHP | DateTime diff()函数

DateTime::diff()函数是PHP中的一个内置函数,用于返回两个给定 DateTime 对象之间的差异。

句法:

  • 面向对象风格:
    DateInterval DateTime::diff( DateTimeInterface $datetime2,
                                      bool $absolute = FALSE )

    或者

    DateInterval DateTimeImmutable::diff( DateTimeInterface $datetime2,
                                      bool $absolute = FALSE )

    或者

    DateInterval DateTimeInterface::diff( DateTimeInterface $datetime2,
                                      bool $absolute = FALSE )
  • 程序风格:
    DateInterval date_diff( DateTimeInterface $datetime1,
                      DateTimeInterface $datetime2, bool $absolute = FALSE )

参数:此函数使用上面提到的两个参数,如下所述:

  • $datetime:此参数保存要与第一个日期比较的日期。
  • $absolute:此参数强制间隔为正。

返回值:此函数返回两个给定 DateTime 对象之间的差异。

下面的程序说明了PHP中的 DateTime::diff()函数:

方案一:

diff($datetime2);
  
// Getting the difference between two
// given DateTime objects
echo $difference->format('%R%a days');
?>
输出:
+5 days

方案二:

diff($datetime2);
  
// Getting the difference between two
// given DateTime objects
echo $difference->format('%R%a days');
?>
输出:
+31 days

参考: https://www. PHP.net/manual/en/datetime.diff。 PHP