From php-general Sun May 01 20:47:45 2005 From: Gabriel Birke Date: Sun, 01 May 2005 20:47:45 +0000 To: php-general Subject: [PHP] empty function and array indices Message-Id: <32903d4e05050113474ef4595c () mail ! gmail ! com> X-MARC-Message: https://marc.info/?l=php-general&m=111498087604413 Hello! Suppose I have the following code: $a = array('a'=>1, 'b'=>2); echo empty($a['c'])?'empty':'not empty'; echo $a['c']; Why doesn't the 2nd line output a warning when error_reporting is set to E_ALL? Is empty() some kind of special function where the validity of indices is not checked? If that is the case, I have two questions: 1. Will this behavior persist in future versions of PHP? 2. Are there other functions or a general rule where PHP doesn't output warnings when a nonexistant index is given? -- Immanuel doesn't pun, he Kant. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php