Ldap/Filter/Or.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 [email protected] 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: Or.php 24593 2012-01-05 20:35:02Z matthew $
\Zend_Ldap_Filter_Or
Zend_Ldap_Filter_Or provides an 'or' filter.
- Parent(s)
- \Zend_Ldap_Filter_Logical < \Zend_Ldap_Filter_Abstract
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Constants

TYPE_AND
= '&'
- Inherited_from
- \Zend_Ldap_Filter_Logical::TYPE_AND

TYPE_OR
= '|'
- Inherited_from
- \Zend_Ldap_Filter_Logical::TYPE_OR
Properties


array $_subfilters =
All the sub-filters for this grouping filter.
Inherited from: \Zend_Ldap_Filter_Logical::$$_subfilters- Type
- array
- Inherited_from
- \Zend_Ldap_Filter_Logical::$$_subfilters
Methods


__construct(array $subfilters) : void
Creates an 'or' grouping filter.
Name | Type | Description |
---|---|---|
$subfilters | array |


__toString() : string
Returns a string representation of the filter.
Inherited from: \Zend_Ldap_Filter_Abstract::__toString()\Zend_Ldap_Filter_Logical::__toString()Type | Description |
---|---|
string |
- See
- \global\toString()


addAnd( $filter) : \Zend_Ldap_Filter_And
Creates an 'and' filter.
Inherited from: \Zend_Ldap_Filter_Abstract::addAnd()\Zend_Ldap_Filter_Logical::addAnd()Name | Type | Description |
---|---|---|
$filter |
Type | Description |
---|---|
\Zend_Ldap_Filter_And |


addFilter(\Zend_Ldap_Filter_Abstract $filter) : \Zend_Ldap_Filter_Logical
Adds a filter to this grouping filter.
Inherited from: \Zend_Ldap_Filter_Logical::addFilter()Name | Type | Description |
---|---|---|
$filter | \Zend_Ldap_Filter_Abstract |
Type | Description |
---|---|
\Zend_Ldap_Filter_Logical |


addOr( $filter) : \Zend_Ldap_Filter_Or
Creates an 'or' filter.
Inherited from: \Zend_Ldap_Filter_Abstract::addOr()\Zend_Ldap_Filter_Logical::addOr()Name | Type | Description |
---|---|---|
$filter |
Type | Description |
---|---|
\Zend_Ldap_Filter_Or |


escapeValue(string | array $values = array()) : array
Escapes the given VALUES according to RFC 2254 so that they can be safely used in LDAP filters.
Inherited from: \Zend_Ldap_Filter_Abstract::escapeValue()\Zend_Ldap_Filter_Logical::escapeValue()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.
Name | Type | Description |
---|---|---|
$values | string | array | Array of values to escape |
Type | Description |
---|---|
array | Array $values, but escaped |
- Author
- Benedikt Hallinger
- Link
- http://pear.php.net/package/Net_LDAP2
- See
- \global\Net_LDAP2_Util::escape_filter_value()


negate() : \Zend_Ldap_Filter_Abstract
Negates the filter.
Inherited from: \Zend_Ldap_Filter_Abstract::negate()\Zend_Ldap_Filter_Logical::negate()Type | Description |
---|---|
\Zend_Ldap_Filter_Abstract |


toString() : string
Returns a string representation of the filter.
Inherited from: \Zend_Ldap_Filter_Logical::toString()Type | Description |
---|---|
string |


unescapeValue(string | array $values = array()) : array
Undoes the conversion done by {@link escapeValue()}.
Inherited from: \Zend_Ldap_Filter_Abstract::unescapeValue()\Zend_Ldap_Filter_Logical::unescapeValue()Converts any sequences of a backslash followed by two hex digits into the corresponding character.
Name | Type | Description |
---|---|---|
$values | string | array | Array of values to escape |
Type | Description |
---|---|
array | Array $values, but unescaped |
- Author
- Benedikt Hallinger
- Link
- http://pear.php.net/package/Net_LDAP2
- See
- \global\Net_LDAP2_Util::escape_filter_value()