标签:
下载Smarty压缩包并解压,复制其中的libs文件夹到我们的PHP工程目录下(可将其改名为smarty)。同时,在工程目录下新建三个文件夹,分别取名为templates、templates_c和smarty_cache。
配置文件smarty_inc.php
1 <?php 2 3 include_once("smarty/Smarty.class.php"); //包含smarty类文件 4 5 $smarty = new Smarty(); //建立smarty实例对象$smarty 6 7 $smarty->caching=false; //是否使用缓存,项目在调试期间,不建议启用缓存 8 9 $smarty->template_dir = "./templates"; //设置模板目录 10 11 $smarty->compile_dir = "./templates_c"; //设置编译目录 12 13 $smarty->cache_dir = "./smarty_cache"; //缓存文件夹 14 15 //---------------------------------------------------- 16 17 //左右边界符,默认为{},但实际应用当中容易与JavaScript相冲突 18 19 //---------------------------------------------------- 20 21 $smarty->left_delimiter = "{"; 22 23 $smarty->right_delimiter = "}"; 24 25 ?>
标签:
原文地址:http://www.cnblogs.com/crazyyeluo/p/4219976.html