API15:JLDAP/remove
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
Removes attribute value from given dn and return a true or false result
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] SeeAlso:JLDAP/remove
Examples
<CodeExamplesForm />
