Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Zend_Filter_Input 时,是先处理过滤器还是验证器?
来自 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; } }