首页 >后端开发 >php教程 >smarty模板 smarty模板的基础搭建

smarty模板 smarty模板的基础搭建

WBOY
WBOY原创
2016-07-28 08:25:291119浏览

1、下载smarty模板,官方即有

2、解压即可、你会得这样的目录

 smarty模板的基础搭建

除了libs文件夹其余都可以删掉(不知道有啥用)。

3、在当前目录下分别创建templates、templates_c、cache、config的文件夹,别的名字也可以,但是需要修改配置文件

4、在根目录下创建个文件夹叫啥都行,创建个php文件,将下列代码粘入其中。

require_once("libs/smarty.class.php");
$smarty=new smarty();
$smarty->template_dir="templates";//指定模板文件的路径
$smarty->compile_dir="templates_c";//指定编译的文件路径
$smarty->cache_dir="cache";//指定缓存文件路径
$smarty->c c />




声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn