codecamp

Smarty:html_checkboxes函数

{html_checkboxes}

{html_checkboxes}是一个 自定义函数,用于创建HTML的多选框组和提供数据。 请注意默认选中的情况。

参数名称类型必选参数默认值说明
namestringNocheckbox多选框的名称
valuesarray必选,除非使用options属性n/a多选框的值数据
outputarray必选,除非使用options属性n/a多选框的显示数据
selectedstring/arrayNoempty选中的项(一个或多个)
optionsassociative array必须, 除非使用values 和 output属性n/a多选框的值-显示的数组
separatorstringNoempty字符串中分隔每项的字符
assignstringNoempty将多选框标签赋值到数组,而不是输出
labelsbooleanNoTRUE在输出中增加<label>标签
label_idsbooleanNoFALSE给<label> 和 <input>设置ID属性
escapebooleanNoTRUE将输出中的/转换(值总是会被转换)
  • 必须赋值的属性是values 和 output, 除非使用options来代替。

  • 全部的输出标签都遵循XHTML规则。

  • 任何不在上面列表中的键值对属性,都会被输出到<input>标签中作为属性和值。

Example 8.6. {html_checkboxes}

<?php

$smarty->assign('cust_ids', array(1000,1001,1002,1003));
$smarty->assign('cust_names', array(
                                'Joe Schmoe',
                                'Jack Smith',
                                'Jane Johnson',
                                'Charlie Brown')
                              );
$smarty->assign('customer_id', 1001);

?>

模板是:

{html_checkboxes name='id' values=$cust_ids output=$cust_names
   selected=$customer_id  separator='<br />'}

或者PHP代码:

<?php

$smarty->assign('cust_checkboxes', array(
                                     1000 => 'Joe Schmoe',
                                     1001 => 'Jack Smith',
                                     1002 => 'Jane Johnson',
                                     1003 => 'Charlie Brown')
                                   );
$smarty->assign('customer_id', 1001);

?>

模板是:

{html_checkboxes name='id' options=$cust_checkboxes
   selected=$customer_id separator='<br />'}

上面两个例子的输出:

<label><input type="checkbox" name="id[]" value="1000" />Joe Schmoe</label><br />
<label><input type="checkbox" name="id[]" value="1001" checked="checked" />Jack Smith</label>
<br />
<label><input type="checkbox" name="id[]" value="1002" />Jane Johnson</label><br />
<label><input type="checkbox" name="id[]" value="1003" />Charlie Brown</label><br />

Example 8.7.  数据库例子(例如 PEAR 或 ADODB):

<?php

$sql = 'select type_id, types from contact_types order by type';
$smarty->assign('contact_types',$db->getAssoc($sql));

$sql = 'select contact_id, contact_type_id, contact '
       .'from contacts where contact_id=12';
$smarty->assign('contact',$db->getRow($sql));

?>

输出:

{html_checkboxes name='contact_type_id' options=$contact_types
        selected=$contact.contact_type_id separator='<br />'}

参见 {html_radios} 和 {html_options}

Smarty:fetch函数
Smarty:html_image函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }