|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2010-08-23 14:31 UTC] johannes@php.net
 
-Status:      Open
+Status:      Assigned
-Assigned To:
+Assigned To: derick
  [2010-08-28 16:24 UTC] derick@php.net
  [2010-08-30 17:32 UTC] derick@php.net
  [2010-08-30 17:32 UTC] derick@php.net
 
-Status: Assigned
+Status: Closed
  [2010-08-30 17:32 UTC] derick@php.net
  [2010-08-30 17:35 UTC] derick@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 07:00:01 2025 UTC | 
Description: ------------ Iterating over a dateperiod twice does not "reset" the iterator, but starts the second iteration at the endate. This is kindof an duplicate of #46874, but Derick asked me to add it anyways. Test script: --------------- <?php $start = new DateTime('20101212'); $interval = DateInterval::createFromDateString('next day'); $dp = new DatePeriod($start, $interval, 0); foreach($dp as $dt) { echo $dt->format('r') . "\n"; // Sun, 12 Dec 2010 00:00:00 +0100 } foreach($dp as $dt) { echo $dt->format('r') . "\n"; // Mon, 13 Dec 2010 00:00:00 +0100 } Expected result: ---------------- Sun, 12 Dec 2010 00:00:00 +0100 Sun, 12 Dec 2010 00:00:00 +0100 Actual result: -------------- Sun, 12 Dec 2010 00:00:00 +0100 Mon, 13 Dec 2010 00:00:00 +0100