From fb512b8f7e4f5dc790643a66506f52db96bf15e0 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Fri, 19 Sep 2003 04:33:56 +0000 Subject: [PATCH] Correct specified index and grammar git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@140608 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-intersect-assoc.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/array/functions/array-intersect-assoc.xml b/reference/array/functions/array-intersect-assoc.xml index c22f402245..7989f41215 100644 --- a/reference/array/functions/array-intersect-assoc.xml +++ b/reference/array/functions/array-intersect-assoc.xml @@ -1,5 +1,5 @@ - + array_intersect_assoc @@ -46,8 +46,8 @@ Array In our example you see that only the pair "a" => "green" is present in both arrays and thus is returned. The value "red" is not returned because in - $array1 it's key is 2 while - the key of "red" in $array2 it is + $array1 it's key is 0 while + the key of "red" in $array2 is 1.