From: [EMAIL PROTECTED]
Operating system: Red Hat 6.2
PHP version: 4.0.4pl1
PHP Bug Type: Date/time related
Bug description: Date + October
I have a problem with date() function;
In my PC, Today is 31-October-2001.
I would like to obtain precedent month and next month with this clause:
$month_before = date('m',
mktime(0,0,0,date("m")-1,date("d"),date("Y")));
$month_next = date('m', mktime(0,0,0,date("m")+1,date("d"),date("Y")));
Surprisingly, I get this result:
$month_before is equal to 10
$month_next is equal to 12
This error just ocurrs this day "31-10-2001". Another day is ok.
I don't understand it !!!
Can anyone help me ??
--
Edit bug report at: http://bugs.php.net/?id=13888&edit=1
--
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]