|
在Smarty目录中建立templates,templates_c,configs,cache目录。以便Smarty进行编译和缓存。
建立smarty_inc.php文件对smarty进行配置如下:
caching=false; //开发是不建议开启缓存 $smarty->template_dir="./templates"; //设置模板目录 $smarty->compile_dir="./templates_c"; //设置编译目录 $smarty->cache_dir="./cache"; //缓存文件夹 $smarty->cache_lifetime=60; $smarty->left_delimiter = "right_delimiter = "}>"; //右定界符 ?>
行测试,在根目录下建立index.php文件:
assign("name",$val); $smarty->display("index.html"); ?>
在templates下建立index.html模板:
数组内容:
好了,大功告成,就是这么简单,开始你的smarty之旅吧。。。 |
|