(PHP 5 >= 5.6.5, PHP 7, PHP 8)
DatePeriod::getStartDate — Obtient la date de début
Style orienté objet
Obtient la date de début d'une période.
Cette fonction ne contient aucun paramètre.
Renvoi un object DateTimeImmutable
quand la DatePeriod est initialisée avec un
object DateTimeImmutable
comme paramètre start
.
Exemple #1 Exemple DatePeriod::getStartDate()
<?php
$period = new DatePeriod('R7/2016-05-16T00:00:00Z/P1D');
$start = $period->getStartDate();
echo $start->format(DateTime::ISO8601);
?>
L'exemple ci-dessus va afficher :
2016-05-16T00:00:00+0000