(PHP 5 >= 5.5.0, PHP 7, PHP 8)
DateTimeImmutable::modify — 创建具有修改时间戳的新对象
创建具有修改时间戳的新 DateTimeImmutable 对象。原始对象不会被修改。
modifier
日期/时间字符串。有效格式在 日期和时间格式 中解释。
返回一个新的修改后的 DateTimeImmutable 对象,或者在失败时返回 false
。
如果传递了无效的日期/时间字符串,则会抛出 DateMalformedStringException。在 PHP 8.3 之前,这是一个警告。
版本 | 说明 |
---|---|
8.3.0 | 现在如果传递了无效字符串,则会抛出 DateMalformedStringException,而不是警告。 |
示例 #1 DateTimeImmutable::modify() 示例
面向对象风格
<?php
$date = new DateTimeImmutable('2006-12-12');
$newDate = $date->modify('+1 day');
echo $newDate->format('Y-m-d');
?>
上面的示例将输出
2006-12-13
示例 #2 注意添加或减去月份
<?php
$date = new DateTimeImmutable('2000-12-31');
$newDate1 = $date->modify('+1 month');
echo $newDate1->format('Y-m-d') . "\n";
$newDate2 = $newDate1->modify('+1 month');
echo $newDate2->format('Y-m-d') . "\n";
?>
上面的示例将输出
2001-01-31 2001-03-03