smarty自定义函数htmlcheckboxes用法实例_PHP
程序员文章站
2024-01-15 13:35:22
...
本文实例讲述了smarty自定义函数htmlcheckboxes用法。分享给大家供大家参考。具体如下:
模板文件:temp.htm
测试结果:utf-8下显示正常,但文件编码为ANSI时,中文不能显示。
访问文件: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->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程序设计有所帮助。
上一篇: 求apche重定向规约
下一篇: php cookie 设置有关问题
推荐阅读
-
php中smarty模板条件判断用法实例_PHP
-
php中debug_backtrace、debug_print_backtrace和匿名函数用法实例_PHP
-
PHP中header函数的用法及其注意事项详解_php实例
-
浅谈PHP eval()函数定义和用法_php实例
-
php中current、next与reset函数用法实例,currentreset
-
Laravel框架中扩展函数、扩展自定义类的方法_php实例
-
php:header()函数用法实例详解
-
php中smarty模板条件判断用法实例,smarty模板
-
php中smarty模板条件判断用法实例,smarty模板_PHP教程
-
php自定义urlencode,urldecode函数实例,urlencodeurldecode