reference/array/functions/array-uintersect.xml
56509d07ae636f076057f55bbb2572ab7b7a39eb
...
...
@@ -9,9 +9,8 @@
9
9
&reftitle.description;
10
10
<methodsynopsis>
11
11
<type>array</type><methodname>array_uintersect</methodname>
12
-
<methodparam><type>array</type><parameter>array1</parameter></methodparam>
13
-
<methodparam><type>array</type><parameter>array2</parameter></methodparam>
14
-
<methodparam choice="opt"><type>array</type><parameter>...</parameter></methodparam>
12
+
<methodparam><type>array</type><parameter>array</parameter></methodparam>
13
+
<methodparam rep="repeat"><type>array</type><parameter>arrays</parameter></methodparam>
15
14
<methodparam><type>callable</type><parameter>value_compare_func</parameter></methodparam>
16
15
</methodsynopsis>
17
16
<para>
...
...
@@ -23,7 +22,7 @@
23
22
<para>
24
23
<variablelist>
25
24
<varlistentry>
26
-
<term><parameter>array1</parameter></term>
25
+
<term><parameter>array</parameter></term>
27
26
<listitem>
28
27
<para>
29
28
The first array.
...
...
@@ -31,20 +30,18 @@
31
30
</listitem>
32
31
</varlistentry>
33
32
<varlistentry>
34
-
<term><parameter>array2</parameter></term>
33
+
<term><parameter>arrays</parameter></term>
35
34
<listitem>
36
35
<para>
37
-
The second array.
36
+
Arrays to compare against.
38
37
</para>
39
38
</listitem>
40
39
</varlistentry>
41
40
<varlistentry>
42
41
<term><parameter>value_compare_func</parameter></term>
43
42
<listitem>
44
-
<para>
45
-
&return.callbacksort;
46
-
</para>
47
-
&callback.cmp;
43
+
&sort.callback.description;
44
+
&sort.callback.description.presort;
48
45
</listitem>
49
46
</varlistentry>
50
47
</variablelist>
...
...
@@ -53,7 +50,7 @@
53
50
<refsect1 role="returnvalues">
54
51
&reftitle.returnvalues;
55
52
<para>
56
-
Returns an array containing all the values of <parameter>array1</parameter>
53
+
Returns an array containing all the values of <parameter>array</parameter>
57
54
that are present in all the arguments.
58
55
</para>
59
56
</refsect1>
60
57