Zend_Filter_Input kullanırken, filtreler veya Doğrulayıcıları ilk olarak işlenir?
Input.php \ Zend \ Filtre:
public function isValid($fieldName = null) { $this->_process(); (...) } protected function _process() { if ($this->_processed === false) { $this->_filter(); $this->_validate(); $this->_processed = true; } }