免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1976 | 回复: 6
打印 上一主题 下一主题

smarty 这个怎么回事? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-28 19:24 |只看该作者 |倒序浏览
解压缩出来的目录的libs/拷贝到/var/www/html/smarty/里,再在smarty/里新建templates目录,templates里新建cache/,templates/,templates_c/, config/
(2) 新建一个模板文件:index.tpl,将此文件放在learn/smarty/templates/templates目录下,代码如下:


{$hello}


新建index.PHP,将此文件放在learn/下:

<?PHP
//引用类文件
require 'smarty/libs/Smarty.class.php';
$smarty = new Smarty;   
//设置各个目录的路径,这里是安装的重点
$smarty->template_dir = "smarty/templates/templates";
$smarty->compile_dir = "smarty/templates/templates_c";
$smarty->config_dir = "smarty/templates/config";
$smarty->cache_dir = "smarty/templates/cache";
//smarty模板有高速缓存的功能,如果这里是true的话即打开caching,但是会造成网页不立即更新的问题,当然也可以通过其他的办法解决
$smarty->caching = false;   
$hello = "Hello World!";
//赋值
$smarty->assign("hello",$hello);  
//引用模板文件
$smarty->display('index.tpl');    ?>  
结果显示{hello};而不是Hello World!了

[ 本帖最后由 jiangtao0506 于 2009-5-6 16:05 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-04-28 20:45 |只看该作者
定界符重新设置好

论坛徽章:
0
3 [报告]
发表于 2009-04-28 22:38 |只看该作者
说清楚点,定界符我设了,就是结果不是期望的那样

论坛徽章:
0
4 [报告]
发表于 2009-04-29 09:50 |只看该作者
{$hello}

论坛徽章:
0
5 [报告]
发表于 2009-04-29 13:25 |只看该作者
你把{$hello}写成{hello}了

论坛徽章:
0
6 [报告]
发表于 2009-05-06 15:52 |只看该作者
等待各位大哥的回答

论坛徽章:
0
7 [报告]
发表于 2009-05-06 16:06 |只看该作者
问题解决,主要是因为本人不小心加如一些特殊字符造成的,修改后就ok了,
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP