Bug #78055 [Asn->Csd]: DatePeriod recurrences changing after creation
[email protected] Wed, 19 Oct 2022 15:09:53 +0000
| Newsgroups | php.doc.bugs |
|---|---|
| Message-ID | <[email protected]> |
Edit report at https://bugs.php.net/bug.php?id=78055&edit=1 ID: 78055 Updated by: [email protected] Reported by: kb2kztynisv99h3ykx at mail dot uebernickel dot info Summary: DatePeriod recurrences changing after creation -Status: Assigned +Status: Closed Type: Bug Package: Documentation problem Operating System: macOS PHP Version: 7.3.5 Assigned To: derick Block user comment: N Private report: N New Comment: Automatic comment on behalf of derickr Revision: https://github.com/php/doc-en/commit/c401af11b147e38be7ec09d8267f377269beeba3 Log: Fixed bug #78055: Documentation improvement for DatePeriod::getRecurrences and ->recurrences Previous Comments: ------------------------------------------------------------------------ [2019-09-23 10:30:31] mkroese at eljakim dot nl > - maybe that should be removed in the documentation now that getRecurrences is available? Or the documentation of the property and/or the getter should be improved. Also, I'd expect getRecurrences() and ->recurrences to yield the same value. The literal documentation for the $recurrences property is: > The number of recurrences, if the DatePeriod instance had been created by explicitly passing $recurrences. ***See also DatePeriod::getRecurrences().*** however the documentation regarding DatePeriod::getRecurrences() does not note any difference with the $recurrences property. ------------------------------------------------------------------------ [2019-05-23 14:01:24] [email protected] Looking at Bug #75113 - using the recurrences property is not really supported - maybe that should be removed in the documentation now that getRecurrences is available? ------------------------------------------------------------------------ [2019-05-23 12:31:49] kb2kztynisv99h3ykx at mail dot uebernickel dot info Description: ------------ When creating a DatePeriod object using the "recurrences" constructor, it internally changes the counter by increasing it by 1. As the test script illustrates the expectation would be to have the given count of iterations, but it actually contains one more. The documentation at https://www.php.net/manual/en/class.dateperiod.php misses the details. My guess is some relation to the "include start date" option. Test script: --------------- <?php $start = new DateTime('2018-12-31 00:00:00'); $interval = new DateInterval('P1M'); $recurrences = 5; $period = new DatePeriod($start, $interval, $recurrences); $dates = iterator_to_array($period); assert($recurrences === $period->recurrences, 'The recurrences should match.'); assert($recurrences === count($dates), 'The iterator count should match the recurrences.'); var_dump(array_map(function(DateTime $date) { return $date->format('Y-m-d'); }, iterator_to_array($period))); Expected result: ---------------- My expectation would be to have 5 dates even when including the start date. Actual result: -------------- The actual result are 6 dates within the iterator. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=78055&edit=1