smarty模板常见用法

时间:2026-02-14 09:23:36

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赋值代入

© 2026 手抄报圈
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com