Edit report at http://bugs.php.net/bug.php?id=51184&edit=1
ID: 51184 Comment by: pluk77 at gmail dot com Reported by: s...@php.net Summary: DateInterval has incorrect days property on windows Status: Closed Type: Bug Package: Date/time related Operating System: Windows PHP Version: 5.3.2RC3 Assigned To: seld New Comment: I am using this version: PHP5.3.2 VC6 x86 Thread Safe (2010-Mar-04 20:11:08) and the bug still shows. Can anybody else confirm this bug is still open? Previous Comments: ------------------------------------------------------------------------ [2010-05-19 11:54:18] s...@php.net Confirmed working here. Kalle's comment came after 5.3.2 and I thought the commit was younger too, but it seems good in 5.3.2 indeed. ------------------------------------------------------------------------ [2010-05-19 11:43:47] paj...@php.net It has been released, so try 5.3.2 ------------------------------------------------------------------------ [2010-05-19 11:38:49] pluk77 at gmail dot com There seems to be no windows snapshot available so unable to test if the bugfix solved this problem as well. ------------------------------------------------------------------------ [2010-03-25 13:26:21] ka...@php.net Please try using this snapshot: http://snaps.php.net/php5.3-latest.tar.gz For Windows: http://windows.php.net/snapshots/ Derick fixed #49778, did that fix the issue? ------------------------------------------------------------------------ [2010-03-02 13:41:41] s...@php.net Description: ------------ On Windows, no matter what the dates are, the "days" property of the DateInterval object returned by DateTime::diff() is always 6015. Might be related to http://bugs.php.net/bug.php?id=49778 and http://bugs.php.net/bug.php?id=49081 Test script: --------------- $start = new DateTime('2010-06-06'); $end = new DateTime('2011-02-04'); echo $start->diff($end)->days; $start = new DateTime('2005-01-01'); echo $start->diff($end)->days; Expected result: ---------------- The right number of days, or at least always 42 :) Actual result: -------------- 6015, always. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=51184&edit=1