smarty模板常见用法

2025-11-13 11:04:11

1、安装配置:

  官网下载最新版本:http://www.smarty.net/download

  解压后把libs和configs目录按如下设置拷贝出来

2、路径设置:

templates/

templates_c/

cache/

configs/

libs/

注意:templates_c和cache两个目录的权限要设置成777(chmod -R 777 templates_c cache)

3、Helloworld:

在templates目录下增加一个demo.tpl的文件,里面写上hello world

index.php文件如下:

<?php

require('./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。
猜你喜欢