smarty自定义函数htmlcheckboxes用法实例
程序员文章站
2023-11-07 20:22:46
本文实例讲述了smarty自定义函数htmlcheckboxes用法。分享给大家供大家参考。具体如下:
访问文件:index.php:
复制代码 代码如下:<...
本文实例讲述了smarty自定义函数htmlcheckboxes用法。分享给大家供大家参考。具体如下:
访问文件:index.php:
复制代码 代码如下:
<?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;
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->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程序设计有所帮助。
上一篇: 黄花菜直接炒?别傻了,这样做更美味!