smarty自定义函数htmlcheckboxes用法实例,smarty自定义函数_PHP教程
程序员文章站
2022-06-04 21:02:11
...
smarty自定义函数htmlcheckboxes用法实例,smarty自定义函数
本文实例讲述了smarty自定义函数htmlcheckboxes用法。分享给大家供大家参考。具体如下:
访问文件:index.php:
复制代码 代码如下:
require_once('libs/Smarty.class.php');
$smarty = new Smarty();
$smarty->setTemplateDir($_SERVER['DOCUMENT_ROOT']."/php/templates/");
$smarty->setCompileDir($_SERVER['DOCUMENT_ROOT']."/php/templates_c/");
$smarty->setCacheDir($_SERVER['DOCUMENT_ROOT']."/php/cache/");
$smarty->caching = false;
$smarty = new Smarty();
$smarty->setTemplateDir($_SERVER['DOCUMENT_ROOT']."/php/templates/");
$smarty->setCompileDir($_SERVER['DOCUMENT_ROOT']."/php/templates_c/");
$smarty->setCacheDir($_SERVER['DOCUMENT_ROOT']."/php/cache/");
$smarty->caching = false;
$smarty->assign('cust_ids',array(1000,1001,1002,1003));
$smarty->assign('cust_name',array("喜洋洋","美洋洋","懒洋洋","哈哈哈"));
$smarty->assign('customer_id',1001);
$smarty->display("temp.htm");
?>
模板文件:temp.htm
复制代码 代码如下:
{html_checkboxes values=$cust_ids output=$cust_name selected=$customer_id}
测试结果:utf-8下显示正常,但文件编码为ANSI时,中文不能显示。
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
smarty自定义函数htmlcheckboxes用法实例
-
smarty内置函数{loteral}、{ldelim}和{rdelim}用法实例_PHP
-
smarty自定义函数htmlcheckboxes用法实例_PHP
-
PHP模板引擎Smarty内建函数foreach,foreachelse用法分析_php实例
-
smarty模板引擎中自定义函数的方法_php实例
-
smarty内部日期函数html_select_date()用法实例分析,select函数用法_PHP教程
-
PHP模板引擎Smarty自定义变量调解器用法_php实例
-
smarty自定义函数用法示例,smarty自定义示例
-
smarty自定义函数htmlcheckboxes用法实例
-
smarty内置函数section的用法,smarty内置section_PHP教程