0

我想制作一个带有密码字段的表单。我想将密码字段与常量进行比较。有可能addValidator()吗?

$this->addElement( $this->createElement ( 'password', 'password' )
                        ->setAttrib('class','fld')
                        ->setLabel ( 'Slaptažodis: ' )
                        ->addValidator('Identical',
                                       false,
                                       array('token' => 'value')
));
4

1 回答 1

1

尝试这样的事情:

    $constantHere = '123';
    $this->addElement( $this->createElement ( 'password', 'password' )
                    ->setAttrib('class','fld')
                    ->setLabel ( 'Slaptažodis: ' )
                    ->addValidator('Identical',
                                   false,
                                   $constantHere));

当你想与另一个元素进行比较时,你只使用 Array 和 TOKEN,如果你想与常量进行比较,你需要直接在最后一个参数中使用。

在此处查看更多信息: zend doc

于 2013-04-16T19:51:51.330 回答