API15:JLDAP/replace
From Joomla! Documentation
Description
Replace an entry and return a true or false result
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
replace($dn, $attribute)
| Parameter Name | Default Value | Description |
|---|---|---|
| $dn | dn The DN which contains the attribute you want to replace | |
| $attribute | attribute The attribute values you want to replace |
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 replace($dn, $attribute) {
return @ldap_mod_replace($this->_resource, $dn, $attribute);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples