| 
 | ldap_count_entriesCount the number of entries in a search Description
   int ldap_count_entries
    ( resource  $link_identifier, resource$result_identifier)Returns the number of entries stored in the result of previous search operations. Parameters
 
 Return Values
   Returns number of entries in the result or  Examples
 Example #1 ldap-count-entries example Retrieve number of entries in the result. 
// $ds is a valid link identifier (see ldap_connect)The above example will output something similar to: 
     int(1)
      |