Correct specified index and grammar

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@140608 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sara Golemon 2003-09-19 04:33:56 +00:00
parent 04b210a1f6
commit fb512b8f7e

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry id="function.array-intersect-assoc">
<refnamediv>
<refname>array_intersect_assoc</refname>
@ -46,8 +46,8 @@ Array
In our example you see that only the pair <literal>"a" =&gt;
"green"</literal> is present in both arrays and thus is returned.
The value <literal>"red"</literal> is not returned because in
<varname>$array1</varname> it's key is <literal>2</literal> while
the key of "red" in <varname>$array2</varname> it is
<varname>$array1</varname> it's key is <literal>0</literal> while
the key of "red" in <varname>$array2</varname> is
<literal>1</literal>.
</simpara>
<simpara>