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; } }