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

smarty配置文件

时间:2014-12-07 23:17:50      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:php

<?php
 include_once("smarty/Smarty.class.php");
 $smarty=new Smarty();
 $smarty->caching=true;/*开启缓存*/
 $smarty->template_dir="./templates";/*缓存的路径*/
 $smarty->compile_dir="./templates_c";/*编译的目录*/
 $smarty->cache_dir="./smarty_cache";/*缓存的目录*/
 $smarty->left_delimiter="{";/*定义左边的*/
 $smarty->right_delimiter='}';/*定义右边的*/
 $smarty->cache_lifetime=600;/*缓存的时间*/
/*$smarty->display('cache.tpl',cache_id);缓存一个页面,生成id
$smarty->clear_all_cache();清除所有的缓存
$smarty->clear_cache('index.html');清除一个页面
$smarty->clear_cache('index.html',cache_id);清除一个固定id的缓存*/
?>

smarty配置文件

标签:php

原文地址:http://blog.csdn.net/dapeng0112/article/details/41791933

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