API15

JLDAP/read

From Joomla! Documentation

< API15:JLDAP

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Read all or specified attributes of given dn

[<! removed edit link to red link >]

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

Syntax[edit]

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[edit]

array of attributes or -1 on error public

Defined in[edit]

libraries/joomla/client/ldap.php

Importing[edit]

jimport( 'joomla.client.ldap' );

Source Body[edit]

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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]