ID:               39309
 Updated by:       [EMAIL PROTECTED]
 Reported By:      thebogu at gmail dot com
-Status:           Open
+Status:           Wont fix
 Bug Type:         Date/time related
 Operating System: Windows XP SP2
 PHP Version:      4.4.4


Previous Comments:
------------------------------------------------------------------------

[2006-10-30 16:23:58] thebogu at gmail dot com

I cant go for php5, I'll use a different approach, I notice the bug, I
saw nobody reported it, I thought giving a try.

Anyway, thanks for reply ...

------------------------------------------------------------------------

[2006-10-30 15:34:45] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip

------------------------------------------------------------------------

[2006-10-30 15:23:33] thebogu at gmail dot com

Description:
------------
I tried a little script that parse all days since a certain date till
today, I get an infinite loop and after I debug the script I notice
that for 2006-03-25 if I use strtotime("+1 day") to get to the next day
it don't calculate the day correctly.

I'll the testing script below ...

Before reporting this bug I test this function under php 4.4.2 and php
4.4.4 under linux and is working corectly, the only problem I could
think of is the php 4.4.4 win vers ...

Reproduce code:
---------------
<?php
        $time = "2006-03-25";
        echo date("Y-m-d H:i:s",strtotime($time))."<br>";
        echo date("Y-m-d H:i:s",strtotime("+1 day",strtotime($time)))."<br>";
?>

Expected result:
----------------
2006-03-25 00:00:00
2006-03-26 00:00:00

Actual result:
--------------
2006-03-25 00:00:00
2006-03-25 23:00:00


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=39309&edit=1

Reply via email to