ID: 11805
Updated by: hholzgra
Reported By: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Closed
Bug Type: Date/time related
Operating system:
PHP Version: 4.0.5
Assigned To:
Comments:
daylight saving time !
look for the optional seventh parameter to mktime
on http://php.net/mktime
Previo
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 th
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:
-