php man page for ldap_sort

Query: ldap_sort

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

LDAP_SORT(3)								 1							      LDAP_SORT(3)

ldap_sort - Sort LDAP result entries

SYNOPSIS
bool ldap_sort (resource $link, resource $result, string $sortfilter)
DESCRIPTION
Sort the result of a LDAP search, returned by ldap_search(3).
PARAMETERS
o $link - An LDAP link identifier, returned by ldap_connect(3). o $result - An search result identifier, returned by ldap_search(3). o $sortfilter - The attribute to use as a key in the sort.
EXAMPLES
Sorting 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); PHP Documentation Group LDAP_SORT(3)
Related Man Pages
ldap_sort_entries(3ldap) - sunos
ldap_sort_strcasecmp(3ldap) - sunos
ldap_get_attributes(3) - php
ldap_list(3) - php
ldap_next_entry(3) - php
Similar Topics in the Unix Linux Community
User Guide: Posting in the Emergency Forum
Rules for Homework &amp; Coursework Questions Forum
Please Welcome Don Cragun as Lead Moderator
Status of UNIX.COM Forum Transformation
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun