reference/array/functions/array-udiff-uassoc.xml
56509d07ae636f076057f55bbb2572ab7b7a39eb
...
...
@@ -9,9 +9,8 @@
9
9
&reftitle.description;
10
10
<methodsynopsis>
11
11
<type>array</type><methodname>array_udiff_uassoc</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
<methodparam><type>callable</type><parameter>key_compare_func</parameter></methodparam>
17
16
</methodsynopsis>
...
...
@@ -29,7 +28,7 @@
29
28
<para>
30
29
<variablelist>
31
30
<varlistentry>
32
-
<term><parameter>array1</parameter></term>
31
+
<term><parameter>array</parameter></term>
33
32
<listitem>
34
33
<para>
35
34
The first array.
...
...
@@ -37,20 +36,18 @@
37
36
</listitem>
38
37
</varlistentry>
39
38
<varlistentry>
40
-
<term><parameter>array2</parameter></term>
39
+
<term><parameter>arrays</parameter></term>
41
40
<listitem>
42
41
<para>
43
-
The second array.
42
+
Arrays to compare against.
44
43
</para>
45
44
</listitem>
46
45
</varlistentry>
47
46
<varlistentry>
48
47
<term><parameter>value_compare_func</parameter></term>
49
48
<listitem>
50
-
<para>
51
-
&return.callbacksort;
52
-
</para>
53
-
&callback.cmp;
49
+
&sort.callback.description;
50
+
&sort.callback.description.presort;
54
51
</listitem>
55
52
</varlistentry>
56
53
<varlistentry>
...
...
@@ -71,7 +68,7 @@
71
68
&reftitle.returnvalues;
72
69
<para>
73
70
Returns an <type>array</type> containing all the values from
74
-
<parameter>array1</parameter> that are not present in any of the other
71
+
<parameter>array</parameter> that are not present in any of the other
75
72
arguments.
76
73
</para>
77
74
</refsect1>
...
...
@@ -85,7 +82,7 @@
85
82
<?php
86
83
class cr {
87
84
private $priv_member;
88
-
function cr($val)
85
+
function __construct($val)
89
86
{
90
87
$this->priv_member = $val;
91
88
}
92
89