DatePeriod::getStartDate

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

DatePeriod::getStartDate Obtém a data inicial

Descrição

Estilo orientado a objetos

public DatePeriod::getStartDate(): DateTimeInterface

Obtém a data inicial do período.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna um object DateTimeImmutable quando o DatePeriod é inicializado com um object DateTimeImmutable no parâmetro start.

Caso contrário, retorna um object DateTime.

Exemplos

Exemplo #1 Exemplo de DatePeriod::getStartDate()

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

O exemplo acima produzirá:

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

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top