PHP.nl

ldap_sort

ldap_sort

Sort LDAP result entries on the client side

bool **ldap_sort** resource $link resource $result string $sortfilter

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 either of the server or defined within . sizelimit``ldap_search

link An LDAP resource, returned by . ldap_connect

result An search result identifier, returned by . ldap_search

sortfilterThe attribute to use as a key in the sort.

return.void

Sorting the result of a search.

Voorbeeld: 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);