Horde_Ldap_Filter::__toString PHP Метод

__toString() публичный Метод

This method runs through all filter objects and creates the string representation of the filter.
public __toString ( ) : string
Результат string
    public function __toString()
    {
        if (!count($this->_filters)) {
            return $this->_filter;
        }
        $return = '';
        foreach ($this->_filters as $filter) {
            $return .= (string) $filter;
        }
        return '(' . $this->_operator . $return . ')';
    }