Zend\Ldap\Filter\AbstractFilter provides a base implementation for filters.

 Methods

Returns a string representation of the filter.

__toString() : string

see \Zend\Ldap\Filter\toString()

Returns

string

Creates an 'and' filter.

addAnd($filter) : \Zend\Ldap\Filter\AndFilter

Parameters

$filter

Returns

Creates an 'or' filter.

addOr($filter) : \Zend\Ldap\Filter\OrFilter

Parameters

$filter

Returns

Escapes the given VALUES according to RFC 2254 so that they can be safely used in LDAP filters.

escapeValue(string | array $values) : array

Any control characters with an ACII code < 32 as well as the characters with special meaning in LDAP filters "*", "(", ")", and "\" (the backslash) are converted into the representation of a backslash followed by two hex digits representing the hexadecimal value of the character.

see \Zend\Ldap\Filter\Net_LDAP2_Util::escape_filter_value()
link http://pear.php.net/package/Net_LDAP2
author Benedikt Hallinger

Parameters

$values

stringarray

Array of values to escape

Returns

arrayArray $values, but escaped

Negates the filter.

negate() : \Zend\Ldap\Filter\AbstractFilter

Returns a string representation of the filter.

toString() : string

Returns

string

Undoes the conversion done by {@link escapeValue()}.

unescapeValue(string | array $values) : array

Converts any sequences of a backslash followed by two hex digits into the corresponding character.

see \Zend\Ldap\Filter\Net_LDAP2_Util::escape_filter_value()
link http://pear.php.net/package/Net_LDAP2
author Benedikt Hallinger

Parameters

$values

stringarray

Array of values to escape

Returns

arrayArray $values, but unescaped