ID: 41709 Updated by: [EMAIL PROTECTED] Reported By: xsuchy09 at gmail dot com -Status: Open +Status: Bogus Bug Type: Date/time related Operating System: Windows XP PHP Version: 5.2.3 New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php . Previous Comments: ------------------------------------------------------------------------ [2007-06-15 20:46:37] xsuchy09 at gmail dot com Description: ------------ date_parse function returns wrong value in year index in returned array when parameter is '00.00.0000 - 00:00:00' Reproduce code: --------------- $date_string = '00.00.0000 - 00:00:00'; print_r(date_parse($date_string)); Expected result: ---------------- Array ( [year] => 0000 [month] => 0 [day] => 0 [hour] => 0 [minute] => 0 [second] => 0 [fraction] => 0 [warning_count] => 0 [warnings] => Array ( ) [error_count] => 1 [errors] => Array ( [11] => Unexpected character ) [is_localtime] => ) Actual result: -------------- Array ( [year] => 2000 [month] => 0 [day] => 0 [hour] => 0 [minute] => 0 [second] => 0 [fraction] => 0 [warning_count] => 0 [warnings] => Array ( ) [error_count] => 1 [errors] => Array ( [11] => Unexpected character ) [is_localtime] => ) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=41709&edit=1
