Zend_Filter_Input kullanarak, filtreler veya Doğrulayıcıları ilk olarak işlenir?

1 Cevap php

Zend_Filter_Input kullanırken, filtreler veya Doğrulayıcıları ilk olarak işlenir?

1 Cevap

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