gpt4 book ai didi

zend-framework - 需要使用 Zend_Form_Element_Checkbox 的复选框数组

转载 作者:行者123 更新时间:2023-12-01 04:15:14 24 4
gpt4 key购买 nike

我需要一个复选框数组,它应该如下所示:

<input type="checkbox" name="myname[]" >

目前我正在使用
new Zend_Form_Element_Checkbox('myname[]');

但它没有在 html 控件中显示数组。它把这个画成
<input type="checkbox" name="myname">

任何解决方案?

最佳答案

<?php
$myname = new Zend_Form_Element_Checkbox('myname');
$myname->setLabel('This is my label')
->setRequired(true)
->addMultiOptions(array('myname' => true));

关于zend-framework - 需要使用 Zend_Form_Element_Checkbox 的复选框数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4145198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com