The DatePeriod class
Represents a date period.
Intro
Represents a date period.
A date period allows iteration over a set of dates and times, recurring at regular intervals, over a given period.
Class synopsis
Predefined Constants
DatePeriod::EXCLUDE_START_DATEintExclude start date, used in
DatePeriod::__construct().DatePeriod::INCLUDE_END_DATEintInclude end date, used in
DatePeriod::__construct().
Properties
recurrencesThe minimum amount of instances as returned by the iterator.
If the number of recurrences has been explicitly passed through the
recurrencesparameter in the constructor of theDatePeriodinstance, then this property contains this value, plus one if the start date has not been disabled throughDatePeriod::EXCLUDE_START_DATE, plus one if the end date has been enabled throughDatePeriod::INCLUDE_END_DATE.If the number of recurrences has not been explicitly passed, then this property contains the minimum number of returned instances. This would be
0, plus one if the start date has not been disabled throughDatePeriod::EXCLUDE_START_DATE, plus one if the end date has been enabled throughDatePeriod::INCLUDE_END_DATE.php<?php $start = new DateTime('2018-12-31 00:00:00'); $end = new DateTime('2021-12-31 00:00:00'); $interval = new DateInterval('P1M'); $recurrences = 5; // recurrences explicitly set through the constructor $period = new DatePeriod($start, $interval, $recurrences, DatePeriod::EXCLUDE_START_DATE); echo $period->recurrences, "\n"; $period = new DatePeriod($start, $interval, $recurrences); echo $period->recurrences, "\n"; $period = new DatePeriod($start, $interval, $recurrences, DatePeriod::INCLUDE_END_DATE); echo $period->recurrences, "\n"; // recurrences not set in the constructor $period = new DatePeriod($start, $interval, $end); echo $period->recurrences, "\n"; $period = new DatePeriod($start, $interval, $end, DatePeriod::EXCLUDE_START_DATE); echo $period->recurrences, "\n";The above example will output:
output5 6 7 1 0See also
DatePeriod::getRecurrences.include_end_dateWhether to include the end date in the set of recurring dates or not.
include_start_dateWhether to include the start date in the set of recurring dates or not.
startThe start date of the period.
currentDuring iteration this will contain the current date within the period.
endThe end date of the period.
intervalAn ISO 8601 repeating interval specification.
Changelog
| Version | Description |
|---|---|
| 8.4.0 | The class constants are now typed. |
| 8.2.0 | The DatePeriod::INCLUDE_END_DATE constant and include_end_date property have been added. |
| 8.0.0 | DatePeriod implements IteratorAggregate now. Previously, Traversable was implemented instead. |
Dateperiod