array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'datetime.createfromimmutable.php', 1 => 'DateTime::createFromImmutable', 2 => 'Returns new DateTime instance encapsulating the given DateTimeImmutable object', ), 'up' => array ( 0 => 'class.datetime.php', 1 => 'DateTime', ), 'prev' => array ( 0 => 'datetime.createfromformat.php', 1 => 'DateTime::createFromFormat', ), 'next' => array ( 0 => 'datetime.createfrominterface.php', 1 => 'DateTime::createFromInterface', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/datetime/datetime/createfromimmutable.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

DateTime::createFromImmutable

(PHP 7 >= 7.3.0, PHP 8)

DateTime::createFromImmutableReturns new DateTime instance encapsulating the given DateTimeImmutable object

Опис

public static DateTime::createFromImmutable(DateTimeImmutable $object): static

Параметри

object

The immutable DateTimeImmutable object that needs to be converted to a mutable version. This object is not modified, but instead a new DateTime instance is created containing the same date, time, and timezone information.

Значення, що повертаються

Returns a new DateTime instance.

Журнал змін

Версія Опис
8.0.0 The method returns an instance of the currently invoked class now. Previously, it created a new instance of DateTime.

Приклади

Приклад #1 Creating a mutable date time object

<?php
$date
= new DateTimeImmutable("2014-06-20 11:45 Europe/London");

$mutable = DateTime::createFromImmutable( $date );
?>