ID: 16528 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: Bogus Bug Type: Variables related Operating System: linux PHP Version: 4.1.2 New Comment:
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: ------------------------------------------------------------------------ [2002-04-10 06:21:40] [EMAIL PROTECTED] Can you try 4.2.0RC2 or 3 from www.php.net/~derick? ------------------------------------------------------------------------ [2002-04-10 06:05:18] [EMAIL PROTECTED] In PHP 4.0 you can write the following: ... $a=''; if ( empty($a['bla']) ) ... There are no errors or warnings, even if all warnings has been put on (as we do). in PHP 4.1 this code complains the missing index 'bla': Warning: Uninitialized string offset: 0 in .... Workarround: if ( empty($a) and empty($a['bla']) ) .... which seems not to be very logical. $a['bla'] must be empty, if $a is empty... ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16528&edit=1