芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/clients/canaldegap.fr/modules/CTLModuleMaker/src/functions/DoCheckboxes.php
function DoCheckboxes($id, $name, $choices, $selected=array(), $delimiter="
"){ // pretty much like CreateInputRadioGroup, but using checkboxes if(!is_array($selected)) $selected = array(); $output = ""; foreach($choices as $key=>$value){ $output .= $this->CreateInputCheckbox($id, $name."[]", $value, (in_array($value, $selected)?$value:0))." ".$key.$delimiter; } return $output; }