API15:JLDAP/compare
From Joomla! Documentation
Description
Compare an entry and return a true or false result
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
compare($dn, $attribute, $value)
| Parameter Name | Default Value | Description |
|---|---|---|
| $dn | dn The DN which contains the attribute you want to compare | |
| $attribute | attribute The attribute whose value you want to compare | |
| $value | value The value you want to check against the LDAP attribute |
Returns
mixed result of comparison (true, false, -1 on error) public
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
function compare($dn, $attribute, $value) {
return @ldap_compare($this->_resource, $dn, $attribute, $value);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples