reference/ldap/functions/ldap-get-entries.xml
fbc6f9055f47d18f8ffb30513b772a32eda1526e
...
...
@@ -9,9 +9,9 @@
9
9
<refsect1 role="description">
10
10
&reftitle.description;
11
11
<methodsynopsis>
12
-
<type>array</type><methodname>ldap_get_entries</methodname>
13
-
<methodparam><type>resource</type><parameter>link_identifier</parameter></methodparam>
14
-
<methodparam><type>resource</type><parameter>result_identifier</parameter></methodparam>
12
+
<type class="union"><type>array</type><type>false</type></type><methodname>ldap_get_entries</methodname>
13
+
<methodparam><type>LDAP\Connection</type><parameter>ldap</parameter></methodparam>
14
+
<methodparam><type>LDAP\Result</type><parameter>result</parameter></methodparam>
15
15
</methodsynopsis>
16
16
<para>
17
17
Reads multiple entries from the given result, and then reading the
...
...
@@ -24,17 +24,18 @@
24
24
<para>
25
25
<variablelist>
26
26
<varlistentry>
27
-
<term><parameter>link_identifier</parameter></term>
27
+
<term><parameter>ldap</parameter></term>
28
28
<listitem>
29
29
<para>
30
-
An LDAP link identifier, returned by <function>ldap_connect</function>.
30
+
&ldap.parameter.ldap;
31
31
</para>
32
32
</listitem>
33
33
</varlistentry>
34
34
<varlistentry>
35
-
<term><parameter>result_identifier</parameter></term>
35
+
<term><parameter>result</parameter></term>
36
36
<listitem>
37
37
<para>
38
+
&ldap.parameter.result;
38
39
</para>
39
40
</listitem>
40
41
</varlistentry>
...
...
@@ -46,7 +47,7 @@
46
47
&reftitle.returnvalues;
47
48
<para>
48
49
Returns a complete result information in a multi-dimensional array on
49
-
success and &false; on error.
50
+
success,&return.falseforfailure;.
50
51
</para>
51
52
<para>
52
53
The structure of the array is as follows.
...
...
@@ -73,6 +74,24 @@ return_value[i]["attribute"][j] = jth value of attribute in ith entry
73
74
</para>
74
75
</refsect1>
75
76

77
+
<refsect1 role="changelog">
78
+
&reftitle.changelog;
79
+
<informaltable>
80
+
<tgroup cols="2">
81
+
<thead>
82
+
<row>
83
+
<entry>&Version;</entry>
84
+
<entry>&Description;</entry>
85
+
</row>
86
+
</thead>
87
+
<tbody>
88
+
&ldap.changelog.ldap-object;
89
+
&ldap.changelog.result-object;
90
+
</tbody>
91
+
</tgroup>
92
+
</informaltable>
93
+
</refsect1>
94
+

76
95
<refsect1 role="seealso">
77
96
&reftitle.seealso;
78
97
<para>
...
...
@@ -84,7 +103,6 @@ return_value[i]["attribute"][j] = jth value of attribute in ith entry
84
103
</refsect1>
85
104

86
105
</refentry>
87
-

88
106
<!-- Keep this comment at the end of the file
89
107
Local variables:
90
108
mode: sgml
91
109