qq_印迹_0
2015-04-10 12:19
<!--<meta charset="utf-8"/>-->
<?php
//header("content-type:text/html;charset:utf-8;");
require("../smarty/Smarty.class.php");
$smarty=new Smarty;
$smarty->left_delimiter="{";
$smarty->right_delimiter="}";
$smarty->setCompileDir("template_c");
$smarty->setTemplateDir("tpl");
$smarty->setCacheDir("cache");
$smarty->caching=true;
$smarty->cache_lifetime=120;
$smarty->assign("test","这是测试");
$smarty->display("test.tpl");
//$smarty->
?>
php文件也要保存成utf8格式
在tpl文件上边加上
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 这样一句话一样也可以解析出来
MVC架构模式分析与设计
82396 学习 · 929 问题
相似问题