API16

API16:JLDAP/remove

From Joomla! Documentation

Revision as of 22:39, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Removes attribute value from given dn and return a true or false result <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLDAP/remov...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Removes attribute value from given dn and return a true or false result

[Edit Descripton]

Template:Description:JLDAP/remove

Syntax

remove($dn, $attribute)
Parameter Name Default Value Description
$dn dn The DN which contains the attribute you want to remove
$attribute attribute The attribute values you want to remove

Returns

mixed result of comparison (true, false, -1 on error)

Defined in

libraries/joomla/client/ldap.php

Importing

jimport( 'joomla.client.ldap' );

Source Body

function remove($dn, $attribute)
{
        $resource = $this->_resource;
        return @ldap_mod_del($resource, $dn, $attribute);
}

[Edit See Also] Template:SeeAlso:JLDAP/remove

Examples

<CodeExamplesForm />