LDAP 函数
PHP Manual

ldap_sort

(PHP 4 >= 4.2.0, PHP 5)

ldap_sortSort LDAP result entries

说明

bool ldap_sort ( resource $link , resource $result , string $sortfilter )

Sort the result of a LDAP search, returned by ldap_search().

参数

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.

范例

Sorting the the result of a search.

Example #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);


LDAP 函数
PHP Manual