函数:ldap_get_attributes() |
ldap_get_attributes取得返回资料的属性。 语法: array ldap_get_attributes(int handle, int result_entry_identifier); 返回值: 数组 函数种类: 网络系统
本函数用来取得 LDAP 中所有资源的属性。参数 handle 为打开 LDAP 的代号。参数 result_entry_identifier 将由 ldap_next_attribute() 沿用。返回值为数组资料,数组元素从零开始依次为属性的值。例如
return_value["count"] : 属性个数
下面范例为片段的程序
ldap_first_attribute() ldap_next_attribute() 整理: (www.phpernote.com)
|