CheckBox的问题

时间:2015-05-11 15:27:05

标签: php zend-framework checkbox zend-form

我遇到了zend_form上的复选框的问题,当我得到值时总是我有以下代码:

$e = new Zend_Form_Element_Checkbox('e');
    $e->setLabel('e');
    $emailnotification->options = array(
            'checked' => $e->getCheckedValue(),
            'unChecked' => $e->getUncheckedValue()
    );

并在控制器中:

$form->getValue('e')

当我用firebug检查时,我发现hiden复选框包含值0和复选框值= 1

提前致谢

0 个答案:

没有答案