DateTime::add
date_add
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
DateTime::add -- date_add — 年月日時分秒の値を加えることで、DateTime オブジェクトを変更する
説明
オブジェクト指向型
手続き型
指定した DateInterval オブジェクトを、 指定した DateTime オブジェクトに加えます。
DateTimeImmutable::add() と似ていますが、 DateTime オブジェクトを使って動作します。
手続き型のバージョンは、 DateTime を最初の引数に取ります。
パラメータ
object
手続き型のみ: date_create() が返す DateTime オブジェクト。 この関数は、このオブジェクトを変更します。
-
interval
-
DateInterval オブジェクト
戻り値
メソッドチェインに使う、変更された DateTime オブジェクトを返します。
参考
- DateTimeImmutable::add() - 年月日時分秒の値を加え、新しいオブジェクトを返す
+add a note
User Contributed Notes 1 note
tatarynowicz at gmail dot com ¶
1 month ago
Depending on what your use case is, adding months might or might not give you the correct result.
// Prints "2024-03-02" instead of "2024-02-29"
print Date::fromString('2024-01-31T10:00:00')
->add(new DateInterval('P1M0D')
->format('Y-m-d');
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google