Method |
Description |
|
aeq ( $attribute, $value ) : Comparison |
An approximately-equal-to comparison. |
|
bAnd ( $op ) : bAnd |
A logical AND operator. |
|
bNot ( BaseOperator $op ) : bNot |
A logical NOT operator. |
|
bOr ( $op ) : bOr |
A logical OR operator. |
|
bitwiseAnd ( string $attribute, integer $value ) : MatchingRule |
Perform a bitwise AND operation against an attribute. |
|
bitwiseOr ( string $attribute, integer $value ) : MatchingRule |
Perform a bitwise OR operation against an attribute. |
|
contains ( $attribute, $value ) : Wildcard |
Encapsulates the search term with a wildcard on each end. |
|
endsWith ( $attribute, $value ) : Wildcard |
Places a wildcard at the beginning of the search term. |
|
eq ( $attribute, $value ) : Comparison |
An equal-to comparison. |
|
getInstance ( LdapTools\Connection\LdapConnectionInterface $connection = null ) : ADFilterBuilder | FilterBuilder |
Get a FilterBuilder instance based on the connection. |
|
gt ( string $attribute, mixed $value ) : bAnd |
A greater-than comparison. Since an actual '>' operator does not exist in LDAP, this is a combination of a
less-than-or-equal-to operator along with a check if the attribute is set/present. This is encapsulated within a
logical 'AND' operator. |
|
gte ( $attribute, $value ) : Comparison |
A greater-than-or-equal-to comparison. |
|
like ( $attribute, $value ) : Wildcard |
Do not escape wildcard characters in the value, but will escape all other characters. This allows for searches
That may need several arbitrarily placed wildcards (ie. sn=Th*m*s) |
|
lt ( string $attribute, mixed $value ) : bAnd |
A less-than comparison. Since an actual '<' operator does not exist in LDAP, this is a combination of a
greater-than-or-equal-to operator along with a check if the attribute is set/present. This is encapsulated within
a logical 'AND' operator. |
|
lte ( $attribute, $value ) : Comparison |
A less-than-or-equal-to comparison. |
|
neq ( $attribute, $value ) : bNot |
A convenience method for a not-equal-to comparison. |
|
notPresent ( $attribute ) : bNot |
Convenience method to check for the non-existence of an attribute. |
|
present ( $attribute ) : Wildcard |
Checks for the existence of an attribute. |
|
startsWith ( $attribute, $value ) : Wildcard |
Places a wildcard at the end of the search term. |
|