array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'dateperiod.getenddate.php', 1 => 'DatePeriod::getEndDate', 2 => 'Gets the end date', ), 'up' => array ( 0 => 'class.dateperiod.php', 1 => 'DatePeriod', ), 'prev' => array ( 0 => 'dateperiod.getdateinterval.php', 1 => 'DatePeriod::getDateInterval', ), 'next' => array ( 0 => 'dateperiod.getrecurrences.php', 1 => 'DatePeriod::getRecurrences', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/datetime/dateperiod/getenddate.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

DatePeriod::getEndDate

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

DatePeriod::getEndDate Gets the end date

Descrizione

Stile orientato agli oggetti

public function DatePeriod::getEndDate(): ?DateTimeInterface

Gets the end date of the period.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns null if the DatePeriod does not have an end date. For example, when initialized with the recurrences parameter, or the isostr parameter without an end date.

Returns a DateTimeImmutable object when the DatePeriod is initialized with a DateTimeImmutable object as the end parameter.

Returns a cloned DateTime object representing the end date otherwise.

Esempi

Example #1 DatePeriod::getEndDate() example

<?php
$period = new DatePeriod(
    new DateTime('2016-05-16T00:00:00Z'),
    new DateInterval('P1D'),
    new DateTime('2016-05-20T00:00:00Z')
);
$start = $period->getEndDate();
echo $start->format(DateTime::ISO8601);

I precedenti esempi visualizzeranno:

2016-05-20T00:00:00+0000

Example #2 DatePeriod::getEndDate() without an end date

<?php
$period = new DatePeriod(
    new DateTime('2016-05-16T00:00:00Z'),
    new DateInterval('P1D'),
    7
);
var_dump($period->getEndDate());

Il precedente esempio visualizzerĂ :

NULL

Vedere anche: