(PHP 4 >= 4.2.0, PHP 5, PHP 7)
ldap_sort — Sort LDAP result entries on the client side
此函數(shù)自 PHP 7.0.0 起棄用且 PHP 8.0.0 起刪除。強(qiáng)烈建議不要應(yīng)用此特性。
$link, resource $result, string $sortfilter): boolSort 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.
沒(méi)有返回值。
| 版本 | 說(shuō)明 |
|---|---|
| 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);