📜  PHP | DateTimeImmutable setDate()函数

📅  最后修改于: 2022-05-13 01:56:19.684000             🧑  作者: Mango

PHP | DateTimeImmutable setDate()函数

DateTimeImmutable::setDate()函数是PHP中的一个内置函数,用于在创建的 DateTimeImmutable 对象中设置新日期。

句法:

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

参数:此函数接受三个参数,如上所述,如下所述:

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

返回值:此函数返回新的日期对象。

下面的程序说明了PHP中的DateTimeImmutable::setDate()函数:

方案一:

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

方案二:

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