当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()函数:

程序1:

<?php 
  
// Initialising the two datetime objects 
$datetime1 = new DateTime('2019-9-10'); 
$datetime2 = new DateTime('2019-9-15'); 
  
// Calling the diff() function on above 
// two DateTime objects 
$difference = $datetime1->diff($datetime2); 
  
// Getting the difference between two 
// given DateTime objects 
echo $difference->format('%R%a days'); 
?>
输出:
+5 days

程序2:

<?php 
  
// Initialising the two datetime objects 
$datetime1 = new DateTime('2019-8-10'); 
$datetime2 = new DateTime('2019-9-10'); 
  
// Calling the diff() function on above 
// two DateTime objects 
$difference = $datetime1->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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | DateTime diff() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。