DateTime::createFromImmutable
(PHP 7 >= 7.3.0, PHP 8)
DateTime::createFromImmutable — 与えられた DateTimeImmutable オブジェクトをカプセル化した、新しい DateTime のインスタンスを返す
説明
パラメータ
object
-
変更可能なバージョンに変換が必要な、 DateTimeImmutable オブジェクト。 このオブジェクトは変更されませんが、 代わりに同じ日付、時刻、タイムゾーンの情報を含んだ 新しい DateTime のインスタンスが作られます。
戻り値
新しい DateTime インスタンスを返します。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 | このメソッドは、現在呼び出されたクラスのインスタンスを返すようになりました。 これより前のバージョンでは、 新しい DateTime のインスタンスを生成していました。 |
例
例1 変更可能な日付オブジェクトを作る
<?php
$date = new DateTimeImmutable("2014-06-20 11:45 Europe/London");
$mutable = DateTime::createFromImmutable( $date );
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google