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

Smarty模版

时间:2014-07-07 20:02:59      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:art   new   php   ar   file   re   

smarty.inc.php

<?php

//创建一个实际路径
define(‘ROOT_PATH‘,dirname(__FILE__));
//引入Smarty
require ROOT_PATH.‘/smarty/Smarty.class.php‘;

//创建一个Smarty对象
$_smarty = new Smarty();

//模板目录
$_smarty->template_dir = ROOT_PATH.‘/templates/‘;
//编译目录
$_smarty->compile_dir = ROOT_PATH.‘/templates_c/‘;
//配置变量目录
$_smarty->config_dir = ROOT_PATH.‘/configs/‘;
//缓存目录
$_smarty->cache_dir = ROOT_PATH.‘/cache/‘;
//是否开启缓存,网站开发调试阶段,我们应该关闭缓存
$_smarty->caching = 1;
//缓存的声明周期
$_smarty->cache_lifetime = 60*60*24;
//左定界符
$_smarty->left_delimiter = ‘{‘;
//右定界符
$_smarty->right_delimiter = ‘}‘;
?>

Smarty模版,布布扣,bubuko.com

Smarty模版

标签:art   new   php   ar   file   re   

原文地址:http://www.cnblogs.com/qiuyang1/p/3813296.html

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