From de0c5af98456e2dd61631986a854ea689ab444da Mon Sep 17 00:00:00 2001 From: James Moore Date: Tue, 15 Aug 2000 12:22:50 +0000 Subject: [PATCH] Adding to warning in response to bug 6117 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@30299 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/array.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/functions/array.xml b/functions/array.xml index 0243580295..bdafd8f3fb 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1833,9 +1833,10 @@ while (list ($id, $name, $salary) = mysql_fetch_row ($result)) { element list, next returns false. - If the array contains empty elements then this function will - return false for these elements as well. To properly traverse - an array which may contain empty elements see the + If the array contains empty elements, or elements that have a key + value of 0 then this function will return false for these elements + as well. To properly traverse an array which may contain empty + elements or elements with key values of 0 see the each function.