API16

API16:JLDAP/read

From Joomla! Documentation

Description

Read all or specified attributes of given dn


<! removed transcluded page call, red link never existed >

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;
        }
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples