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

DatePeriod::getStartDate

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

DatePeriod::getStartDate Gets the start date

Descrizione

Stile orientato agli oggetti

public DatePeriod::getStartDate(): DateTimeInterface

Gets the start date of the period.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Returns a DateTime object otherwise.

Esempi

Example #1 DatePeriod::getStartDate() example

<?php
$period
= new DatePeriod('R7/2016-05-16T00:00:00Z/P1D');
$start = $period->getStartDate();
echo
$start->format(DateTime::ISO8601);
?>

Il precedente esempio visualizzerĂ :

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

Vedere anche: