array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.ldap-sort.php', 1 => 'ldap_sort', 2 => 'Sort LDAP result entries on the client side', ), 'up' => array ( 0 => 'ref.ldap.php', 1 => 'Функції LDAP', ), 'prev' => array ( 0 => 'function.ldap-set-rebind-proc.php', 1 => 'ldap_set_rebind_proc', ), 'next' => array ( 0 => 'function.ldap-start-tls.php', 1 => 'ldap_start_tls', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ldap/functions/ldap-sort.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
ldap_sort — Sort LDAP result entries on the client side
Ця функція ЗАСТАРІЛА, починаючи з PHP 7.0.0, та ВИЛУЧЕНА в PHP 8.0.0. Вкрай не рекомендується на неї покладатися.
Sort the result of a LDAP search, returned by ldap_search().
As this function sorts the returned values on the client side it is possible that
you might not get the expected results in case you reach the sizelimit either of the server or
defined within ldap_search().
linkAn LDAP resource, returned by ldap_connect().
resultAn search result identifier, returned by ldap_search().
sortfilterThe attribute to use as a key in the sort.
Не повертає значень.
| Версія | Опис |
|---|---|
| 8.0.0 | This function has been removed. |
Sorting the result of a search.
Приклад #1 LDAP sort
<?php
// $ds is a valid link identifier (see ldap_connect)
$dn = 'ou=example,dc=org';
$filter = '(|(sn=Doe*)(givenname=John*))';
$justthese = array('ou', 'sn', 'givenname', 'mail');
$sr = ldap_search($ds, $dn, $filter, $justthese);
// Sort
ldap_sort($ds, $sr, 'sn');
// Retrieving the data
$info = ldap_get_entries($ds, $sr);