搁置我的大脑我已经通过zend文档并抓取谷歌但无法找到解决方案。我有一个使用Zend_Form的表单,在初始页面加载时,我需要默认选中“联系我”复选框。
我有下面的代码,假设工作我被告知但不适合我。有没有人有这方面的经验?
$contactme = new Zend_Form_Element_Checkbox('contactme','checked');
$contactme->setLabel("Please untick box if you don't want to be updated with offers.")
->setAttrib('checked','checked')
->setCheckedValue(1)
->setUncheckedValue(0)
->setValue(1);
干杯
约翰
答案 0 :(得分:0)
$form->addElement('checkbox', 'paid', array('value' => true/false));
我是这样做的。您也可以在数组中设置所有其他属性。