与Zend复选框相关的问题

时间:2013-10-30 09:19:33

标签: checkbox zend-form

我在zend编写代码,我想创建多个复选框代码来选择数据,然后在单击提交按钮查看数据库中的信息后,代码工作正常,但是当它到达数据库时,字段不会显示选择框,而不是在该字段中写入“数组”。这是我的下面的表格代码..任何建议高度赞赏

  $Organisation_type = new Zend_Form_Element_MultiCheckbox('Organisation_type', array(
        'multiOptions' => array(
                            '1' =>' Start-up',
                            '2' =>' Sole Proprietor',
                            '3' =>' Partnership',
                            '4' =>' Close Corporation',
                            '5' =>' Company Trust',
                            '6' =>' Compny Propriety Limited',
                            '7' =>' Co-operative',
                            '8' =>' Non Profit Organization',
        )
    ));
    $Organisation_type->setLabel('Organisation type'); 
    $Organisation_type->setValue(array('Start-up', 'Sole Proprietor', 'Partnership', 'Close Corporation', 'Company Trust', 'Compny Propriety Limited', 'Co-operative', 'Non Profit Organization'));

尝试了一段时间,我使用的每一种方法都会遇到同样的问题,请你帮我或提供我可以使用的代码。

1 个答案:

答案 0 :(得分:0)

多检查框的值,如多选的值,将是一个数组(注意如何使用setValue函数分配数组)。您可以将值转换为逗号分隔的字符串,如下所示:

$value = implode(',', $Organisation_type->getValue());

或者,您可以像这样循环遍历多个值:

foreach ($Organisation_type->getValue() as $k => $v) {
    // do something here
}