- s/function/functions/, move a para around and add some see alsos.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164406 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Dave Barr 2004-07-27 04:28:31 +00:00
parent a456251039
commit 8d4e444039

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.array-intersect-uassoc">
<refnamediv>
<refname>array_intersect_uassoc</refname>
<refpurpose>Computes the intersection of arrays with additional index check. The indexes are compared by using a callback functions.</refpurpose>
<refpurpose>Computes the intersection of arrays with additional index check. The indexes are compared by using a callback function</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
@ -19,7 +19,12 @@
containing all the values of <parameter>array1</parameter>
that are present in all the arguments. Note that the keys are used in
the comparison unlike in <function>array_intersect</function>.
The indexes are compared by using a callback functions.
</para>
<para>
The index comparison is done by a user supplied callback function.
It must return an integer less than, equal to, or greater than zero
if the first argument is considered to be respectively less than,
equal to, or greater than the second.
</para>
<para>
<example>
@ -47,18 +52,13 @@ Array
</screen>
</example>
</para>
<para>
For comparison is used the user supplied callback function.
It must return an integer less than, equal
to, or greater than zero if the first argument is considered to
be respectively less than, equal to, or greater than the
second.
</para>
<para>
See also <function>array_intersect</function>,
<function>array_intersect_assoc</function>,
<function>array_uintersect_assoc</function> and
<function>array_uintersect_uassoc</function>.
<function>array_uintersect_assoc</function>,
<function>array_uintersect_uassoc</function>,
<function>array_intersect_key</function> and
<function>array_intersect_ukey</function>.
</para>
</refsect1>
</refentry>