mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Updating documentation to reflect that LDAP pagination is a LDAPv3 protocol feature.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@325751 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
10022f4fae
commit
57af8c0f55
1 changed files with 11 additions and 0 deletions
|
@ -82,6 +82,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink">
|
|||
<![CDATA[
|
||||
<?php
|
||||
// $ds is a valid link identifier (see ldap_connect)
|
||||
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
|
||||
|
||||
$dn = 'ou=example,dc=org';
|
||||
$filter = '(|(sn=Doe*)(givenname=John*))';
|
||||
|
@ -108,6 +109,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink">
|
|||
<![CDATA[
|
||||
<?php
|
||||
// $ds is a valid link identifier (see ldap_connect)
|
||||
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
|
||||
|
||||
$dn = 'ou=example,dc=org';
|
||||
$filter = '(|(sn=Doe*)(givenname=John*))';
|
||||
|
@ -136,6 +138,15 @@ xmlns:xlink="http://www.w3.org/1999/xlink">
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="notes">
|
||||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
Pagination control is a LDAPv3 protocol feature.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue