diff --git a/functions/array.xml b/functions/array.xml index 184142811c..118840c72d 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1,5 +1,5 @@ - + Array Functions Arrays @@ -2057,7 +2057,9 @@ while (list ($key, $val) = each ($HTTP_POST_VARS)) { After each has executed, the array cursor will be left on the next element of the array, or on the last - element if it hits the end of the array. + element if it hits the end of the array. You have to use + reset if you want to traverse the array + again using each. See also key, list,