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_Form。验证和验证失败后,所有字段都会获得其提交的值。这适用于某些领域,但不适用于其他领域。验证失败后如何将某些字段留空。
好吧,您可以在表单使用中像这样手动设置它
$password->setValue("");
表格外使用
$form->getElement('password')->setValue("");