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


PHP DateTimeImmutable setDate()用法及代碼示例


DateTimeImmutable::setDate()函數是PHP中的內置函數,用於在創建的DateTimeImmutable對象中設置新日期。

用法:

DateTimeImmutable DateTimeImmutable::setDate( int $year, int $month, int $day )

參數:此函數接受上述和以下所述的三個參數:


  • $year:此參數以整數格式保存年份值。
  • $month:此參數以整數格式保存月份值。
  • $day:此參數以整數格式保存日期值。

返回值:此函數返回新的日期對象。

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

示例1:

<?php 
  
// PHP program to illustrate DateTimeImmutable::setDate() 
// function 
    
// Creating a new DateTimeImmutable() object 
$datetimeImmutable = new DateTimeImmutable(); 
  
// Initialising year, month and day 
$Year = '2019'; 
$Month = '10'; 
$Day = '03'; 
  
// Calling the DateTimeImmutable::setDate() function 
$a = $datetimeImmutable->setDate($Year, $Month, $Day); 
  
// Getting a new set of date in the 
// format of 'Y-m-d' 
echo $a->format('Y-m-d'); 
?>
輸出:
2019-10-03

示例2:

<?php 
  
// PHP program to illustrate DateTimeImmutable::setDate() 
// function 
    
// Creating a new DateTimeImmutable() object 
$datetimeImmutable = new DateTimeImmutable(); 
  
// Calling the setDate() function 
// with parameters like years of 2019, 
// month of 10 and day of 3 
$a = $datetimeImmutable->setDate(2019, 10, 03); 
  
// Getting a new set of date in the 
// format of 'Y-m-d' 
echo $a->format('Y-m-d'); 
?>
輸出:
2019-10-03

參考: https://www.php.net/manual/en/datetimeimmutable.setdate.php



相關用法


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