smarty缓存复习代码

来源:互联网 发布:tcp协议栈源码 编辑:程序博客网 时间:2024/06/04 18:48
<?php
include ("libs/Smarty.class.php");
$smarty=new Smarty();
$smarty->InitSmarty("demo/templates","demo/templates_c","demo/config");
$smarty->caching=1;
$smarty->cache_dir='demo/cache';
//判断是否已经存在缓存
if(!$smarty->is_cached("brand_info.tpl")){
mysql_connect("localhost","root","123") or die("数据库连接错误");
mysql_select_db("ec_shop");
mysql_query("set names utf8");
$result=mysql_query("select * from brand");
$return=array();
while($row=mysql_fetch_assoc($result))
 {
  $return[]=$row;
 }
 //var_dump($return);
 $smarty->assign("array",$return);
 echo  "模板没有被缓存";
}
/*
$i=0;
while($row=mysql_fetch_assoc($result))
{
  $array[$i]=$row;$i++;
}
*/
//$smarty->cache_lifetime=10;
$smarty->display("brand_info.tpl");//相当于加载进来的路径用的是php文件的