使用Zend_Filter_Input,首先处理过滤器或验证器?

时间:2009-03-18 16:24:40

标签: php zend-framework input filter validation

使用Zend_Filter_Input时,是先处理过滤器还是验证器?

1 个答案:

答案 0 :(得分:4)

来自Zend \ Filter \ Input.php的

public function isValid($fieldName = null)
{
    $this->_process();
    (...)
}


protected function _process()
{
    if ($this->_processed === false) {
        $this->_filter();
        $this->_validate();
        $this->_processed = true;
    }
}