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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。