当前位置:首页 > PHP教程 > Smarty > 列表

smarty自定义函数htmlcheckboxes用法实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-08 21:43:13 浏览: 评论:0 

这篇文章主要介绍了smarty自定义函数htmlcheckboxes用法,实例分析了smarty模板与函数的使用技巧,需要的朋友可以参考下

本文实例讲述了smarty自定义函数htmlcheckboxes用法。分享给大家供大家参考。具体如下:

访问文件:index.php:

  1. <?php 
  2. require_once('libs/Smarty.class.php'); 
  3. $smarty = new Smarty(); 
  4. $smarty->setTemplateDir($_SERVER['DOCUMENT_ROOT']."/php/templates/"); 
  5. $smarty->setCompileDir($_SERVER['DOCUMENT_ROOT']."/php/templates_c/"); 
  6. $smarty->setCacheDir($_SERVER['DOCUMENT_ROOT']."/php/cache/"); 
  7. $smarty->caching = false; 
  8. $smarty->assign('cust_ids',array(1000,1001,1002,1003)); 
  9. $smarty->assign('cust_name',array("喜洋洋","美洋洋","懒洋洋","哈哈哈")); 
  10. $smarty->assign('customer_id',1001); 
  11.  
  12. $smarty->display("temp.htm"); 
  13. ?> 

模板文件:temp.htm,代码如下:

{html_checkboxes values=$cust_ids output=$cust_name selected=$customer_id}

测试结果:utf-8下显示正常,但文件编码为ANSI时,中文不能显示。

Tags: htmlcheckboxes

分享到: