The following script shows an extra 3600 seconds on the 29th of October for
me:

$last_ts = mktime(0,0,0,10,0,2001);

for ($i = 1; $i < 32; $i++) {
        $ts = mktime(0, 0, 0, 10, $i, 2001);
        printf("%2s: %s (%s)\n", $i, $ts, $ts - $last_ts);
        $last_ts = $ts;
}

However, I think that's just Daylight Savings Time...  I'm guessing that
this bug report somehow relates to daylight savings, and thus it isn't
really a bug at all.

--

Steve Meyers

<[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> ID: 11805
> Updated by: sniper
> Reported By: [EMAIL PROTECTED]
> Old-Status: Open
> Status: Feedback
> Bug Type: Date/time related
> Operating system:
> PHP Version: 4.0.5
> Assigned To:
> Comments:
>
> Does this happen with PHP 4.0.6? (I can't reproduce this with it)
>
>
> Previous Comments:
> --------------------------------------------------------------------------
-
>
> [2001-06-29 13:49:51] [EMAIL PROTECTED]
> Hello,
>
> I am trying to write the days between 10/13/2001 and 10/15/20001:
>
> $i = mktime(0,0,0,10,13,2001);// --> 1002942000
> $j = mktime(0,0,0,10,15,2001);// --> 1003111200
>
> while ( $i <= $j ) {
>   echo date("m-d-Y",$i);
>   $i +=86400;
> }
>
> but it stops on 10/14/2001, because
>
>     1002942000 ( $i )
>           + 86400
>           + 86400
> ----------------------------
> =  1003114800
>   - 1003111200 ( $j )
> ------------------------------
> =             3600  ( should be zero ! )
>
> I 've made a work-around using date(m,d+1,Y),
> but somebdoy please explain me where are the
> 3600 seconds that are missing ?
>
> Thanks,
> gabriel
>
>
>
> --------------------------------------------------------------------------
-
>
>
>
> ATTENTION! Do NOT reply to this email!
> To reply, use the web interface found at
http://bugs.php.net/?id=11805&edit=2
>
>
> --
> PHP Development Mailing List <http://www.php.net/>
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to