當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。