1、下载smarty模板,官方即有
2、解压即可、你会得这样的目录
除了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 />