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 . ')';
    }