(PHP 4 >= 4.2.0, PHP 5, PHP 7)
Sort LDAP result entries
bool ldap_sort ( resource $link, resource $result, string $sortfilter )
Sort the result of a LDAP search, returned by ldap_search().
Parameters:
link
An LDAP link identifier, returned by ldap_connect().
result
An search result identifier, returned by ldap_search().
sortfilter
The attribute to use as a key in the sort.
Examples:
LDAP sort
Sorting the result of a search.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?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 ); |
Please login to continue.