abc1.php
<?php
include ("abc.php");
include ("libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->template_dir="demo/templates";//更新模版存放路径及编译路径
$smarty->compile_dir="demo/templates_c";//更新编译路径
$smarty->left_delimiter="<{";//修改界定符
$smarty->right_delimiter="}>";
$smarty->config_dir = "demo/configs";//更改配置文件的路径
$smarty->cache_dir = "demo/cache";//更改缓存文件的路径
$smarty->caching=1;//开启缓存
if(!$smarty->is_cached('abc1.tpl')){
$q="select * from tsxxb";
$result = mysql_query($q);
$i=0;
$array = array();
while($row = mysql_fetch_assoc($result)){
$array[$i]=$row;
$i++;
}
$smarty->assign('array',$array);
echo "缓存没有被设置。。。";
}
//var_dump($array);
$smarty->display("abc1.tpl");
?>