JLDAP/remove: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 45: | Line 45: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=remove | category=remove | ||
category=JLDAP | category=JLDAP | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:51, 25 March 2017
Description
Removes attribute value from given dn and return a true or false result
<! removed transcluded page call, red link never existed >
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);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples