Edit report at http://bugs.php.net/bug.php?id=52798&edit=1
ID: 52798 Updated by: cataphr...@php.net Reported by: ebinachon at pierre-vacances dot fr Summary: dateTime => function diff => days KO -Status: Open +Status: Verified Type: Bug Package: Date/time related Operating System: windows xp PHP Version: 5.3.3 -Assigned To: +Assigned To: derick Block user comment: N New Comment: I can reproduce only on Windows. The exactly value varies (seems to be garbage memory). Previous Comments: ------------------------------------------------------------------------ [2010-09-08 17:19:52] ebinachon at pierre-vacances dot fr Description: ------------ I have a probleme with the function diff of dateTime. When i do a test, the "days" result is always : 6015. All the other informations ( Y, m, d, ... ) are correct. Have-you an idea ? Test script: --------------- Exemple : $date1 = new DateTime('2010-01-01'); $date2 = new DateTime('2010-03-13'); $interval = $date2->diff($date1); Zend_Debug::dump($interval); //OR Zend_Debug::dump($interval->format('%a')); ------------------ Result : object(DateInterval)#174 (8) { ["y"] => int(0) ["m"] => int(2) ["d"] => int(12) ["h"] => int(0) ["i"] => int(0) ["s"] => int(0) ["invert"] => int(0) ["days"] => int(6015) } Expected result: ---------------- days => 71 Actual result: -------------- days => 6015 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=52798&edit=1