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


PHP DateTime modify()用法及代碼示例


DateTime::modify()函數是PHP中的內置函數,可用於修改或更改DateTime對象的時間戳。

用法:

  • 麵向對象的樣式:
    DateTime DateTime::modify( string $modify )
  • 程序風格:
    DateTime date_modify( DateTime $object, string $modify )

參數:此函數使用上麵提到和下麵描述的兩個參數:


  • $object:它指定由date_create()函數返回的DateTime對象。通過DateTime::modify()函數修改此對象。
  • $modify:它指定日期/時間字符串。遞增或遞減以修改DateTime對象。

返回值:如果成功,此函數將返回修改後的DateTime對象,如果失敗,則返回False。

以下示例程序旨在說明PHP中的DateTime::modify()函數:

程序1

<?php 
// PHP program to illustrate  
// DateTime::modify() function 
    
// Creating a DateTime object 
$datetime = new DateTime('2019-09-30'); 
  
// Calling of date DateTime::modify() function 
// with the increment of 5 days as parameters 
$datetime->modify('+5 day'); 
  
// Getting the modified date in "y-m-d" format 
echo $datetime->format('Y-m-d'); 
  
?>
輸出:
2019-10-05

示例2:

<?php 
// PHP program to illustrate the 
// DateTime::modify() function 
    
// Creating a DateTime object 
$datetime = new DateTime('2019-09-30'); 
  
// Calling of date DateTime::modify() function 
// with the increment of 5 months as parameters 
$datetime->modify('+5 month'); 
  
// Getting the modified date in "y-m-d" format 
echo $datetime->format('Y-m-d'); 
  
?>
輸出:
2020-03-01

參考: https://www.php.net/manual/en/datetime.modify.php



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | DateTime modify() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。