smarty模板常见用法
1、安装配置: 官网下载最新版本:http://www.smarty.net/download 解压后把libs和configs目录按如下设置拷贝出来
2、路径设置:templates/templates_c/cache/configs/libs/注意:templates_c和cache两个目录的权限要设置成777(chmod -R 777 templates_ccache)
3、Helloworld:在templates目录下增加一个demo.tpl的文件,里面写上hello worldindex.php文件如下:<?phprequ足毂忍珩ire('./libs/Smarty.class.php');$smarty = new Smarty;//$smarty->assign("result", $res);$smarty->display('demo.tpl');?>至此,基本的hello world程序就写好了,输入url,打开网页,就能看到了。smarty采用变量替换的方法,把php中的变量替换到.tpl模板文件中,tpl模板文件中的变量、表达式等语句使用{$data},这些变量在php中通过assign赋值代入
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
阅读量:38
阅读量:81
阅读量:60
阅读量:43
阅读量:37