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

DateTimeImmutable::createFromMutable

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

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

Açıklama

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

Bağımsız Değişkenler

object

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

Dönen Değerler

Returns a new DateTimeImmutable instance.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 The method returns an instance of the currently invoked class now. Previously, it created a new instance of DateTimeImmutable.

Örnekler

Örnek 1 Creating an immutable date time object

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