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); ?>
(PHP 5 >= 5.6.5, PHP 7, PHP 8)
DatePeriod::getStartDate — Gets the start date
Stile orientato agli oggetti
Gets the start date of the period.
Questa funzione non contiene parametri.
Returns a DateTimeImmutable object
when the DatePeriod is initialized with a
DateTimeImmutable object
as the start
parameter.
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