Ldap/Filter/Logical.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Ldap
- Subpackage
- Filter
- Version
- $Id: Logical.php 24593 2012-01-05 20:35:02Z matthew $
\Zend_Ldap_Filter_Logical
Package: Zend\Ldap\FilterZend_Ldap_Filter_Logical provides a base implementation for a grouping filter.
- Parent(s)
- \Zend_Ldap_Filter_Abstract
- Children
- \Zend_Ldap_Filter_And
- \Zend_Ldap_Filter_Or
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Constants
Properties
Methods



__construct(array $subfilters, string $symbol) : void
Creates a new grouping filter.
ParametersName | Type | Description |
---|
$subfilters | array | |
---|
$symbol | string | |
---|



escapeValue(string | array $values = array()) : 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.
ParametersName | Type | Description |
---|
$values | string | array | Array of values to escape |
---|
ReturnsType | Description |
---|
array | Array $values, but escaped |
Details- Author
- Benedikt Hallinger
- Link
- http://pear.php.net/package/Net_LDAP2
- See
- from Benedikt Hallinger



unescapeValue(string | array $values = array()) : array
Converts any sequences of a backslash followed by two hex digits into the corresponding character.
ParametersName | Type | Description |
---|
$values | string | array | Array of values to escape |
---|
ReturnsType | Description |
---|
array | Array $values, but unescaped |
Details- Author
- Benedikt Hallinger
- Link
- http://pear.php.net/package/Net_LDAP2
- See
- from Benedikt Hallinger