smarty自定义函数htmlcheckboxes用法 smarty自定义函数htmlcheckboxes用法实例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

smarty自定义函数htmlcheckboxes用法 smarty自定义函数htmlcheckboxes用法实例

  2021-03-21 我要评论
想了解smarty自定义函数htmlcheckboxes用法实例的相关内容吗,在本文为您仔细讲解smarty自定义函数htmlcheckboxes用法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:smarty,自定义,函数,htmlcheckboxes,用法,下面大家一起来学习吧。

本文实例讲述了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;

$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程序设计有所帮助。

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们