PHP3 Manual | ||
---|---|---|
Prev | Next |
ldap_get_values -- Get all value from a result entry
Returns an array of values for the attribute on success and false on error.
ldap_get_values() function is used to read all the values of the attribute in the entry in the result. entry is specified by the result_entry_identifier. The number of values can be found by indexing "count" in the resultant array. Individual values are accessed by integer index in the array. The first index is 0.
return_value["count"] = number of values for attribute
return_value[0] = first value of attribute
return_value[i] = ith value of attribute
Prev | Home | Next |
ldap_get_entries | Up | ldap_list |