API16:JLDAP/read
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Read all or specified attributes of given dn
Syntax
read($dn, $attribute=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $dn | dn The DN of the object you want to read | |
| $attribute | array() | attribute The attribute values you want to read (Optional) |
Returns
array of attributes or -1 on error public
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
function read($dn, $attribute = array()) { $base = substr($dn,strpos($dn,',')+1); $cn = substr($dn,0,strpos($dn,',')); $result = @ldap_read($this->_resource, $base, $cn); if ($result) { return @ldap_get_entries($this->_resource, $result); } else { return $result; } }
[Edit See Also] SeeAlso:JLDAP/read
Examples
<CodeExamplesForm />
