我想制作一个带有密码字段的表单。我想将密码字段与常量进行比较。有可能addValidator()
吗?
$this->addElement( $this->createElement ( 'password', 'password' )
->setAttrib('class','fld')
->setLabel ( 'Slaptažodis: ' )
->addValidator('Identical',
false,
array('token' => 'value')
));