Creates a new object with modified timestamp

DateTimeImmutable::modify

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

DateTimeImmutable::modifyCreates a new object with modified timestamp

說明

public DateTimeImmutable::modify(string $modifier): DateTimeImmutable|false

Creates a new DateTimeImmutable object with modified timestamp. The original object is not modified.

參數

object

僅過程化風格:由 date_create() 返回的 DateTime 型別的對象。此函式會修改這個對象。

modifier

日期/時間字串。正確格式的說明詳見 日期與時間格式

返回值

Returns a new modified DateTimeImmutable object 或者在失敗時返回 false.

範例

示例 #1 DateTimeImmutable::modify() example

物件導向風格

<?php
$date 
= new DateTimeImmutable('2006-12-12');
$newDate $date->modify('+1 day');
echo 
$newDate->format('Y-m-d');
?>

以上例程會輸出:

2006-12-13

示例 #2 Beware when adding or subtracting months

<?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

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *