📜  PHP | DateTimeImmutable modify()函数

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

PHP | DateTimeImmutable modify()函数

DateTimeImmutable::modify()函数是PHP中的一个内置函数,用于修改或更改创建的 DateTimeImmutable 对象的时间戳。

句法:

DateTimeImmutable DateTimeImmutable::modify( string $modify )

参数:此函数使用上面提到的两个参数,如下所述:

  • object:此参数保存由 date_create()函数返回的 DateTime 对象。
  • $modify此参数保存日期/时间字符串,该字符串是更改给定 DataTimeImmutable 对象的时间集。

返回值:此函数在成功时返回修改后的 DateTimeImmutable 对象,在失败时返回 False。

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

程序 1:该程序以 5 天为增量修改给定日期。

modify('+5 days');
  
// Getting the modified date in "y-m-d" format
echo $newDateTimeImmutable->format('Y-m-d');
?>
输出:
2019-10-07

程序 2:此程序以 2 个月为增量修改给定日期。

modify('+2 months');
  
// Getting the modified date in "y-m-d" format
echo $newDateTimeImmutable->format('Y-m-d');
?>
输出:
2019-12-02

参考: https://www. PHP.net/manual/en/datetimeimmutable.modify。 PHP