码迷,mamicode.com
首页 > 其他好文 > 详细

Smarty3配置

时间:2015-01-12 23:59:10      阅读:480      评论:0      收藏:0      [点我收藏+]

标签:

下载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 ?>

 

Smarty3配置

标签:

原文地址:http://www.cnblogs.com/crazyyeluo/p/4219976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!