一、Smarty缓存的配置
$smarty->cache_dir = "/caches/"; //缓存目录
$smarty->caching = true; //开启缓存,为flase的时侯缓存无效
$smarty->cache_lifetime = 60; //缓存时间
二、 Smarty缓存的使用和清除
$smarty->display('cache.tpl', cache_id); //创建带ID的缓存
$smarty->clear_all_cache(); //清除所有缓存
$smarty->clear_cache('index.htm'); //清除index.tpl的缓存
$smarty->clear_cache('index.htm',cache_id); //清除指定id的缓存
配置页面 const.php:
<?
@session_start();
require_once("smarty.php");//加载smarty模板类
require_once("adodb/adodb.inc.php");//加载adodb数据库
//连接数据库
$dbhost = 'localhost'; // 数据库服务器
$dbuser = 'root'; // 数据库用户名
$dbpwd= 'root'; // 数据库密码
$dbname='hejia'; //数据库名称
$conn = NewAdoConnection('mysql'); // 建立连接对象
$conn->Connect($dbhost, $dbuser, $dbpwd, $dbname); //连接数据库
$conn->Query("Set Names 'gb2312'");//来源于mysql_query()("SET NAMES GBK");
date_default_timezone_set(PRC); //PHP获取时间差8小时的解决办法,也可在php.ini里修改date.timezone为PRC
?>
首页 index.php:
<?
require_once("const.php");
$sql1="select id,hits,title,add_date from oa_art order by id desc"; //SQL语句
$pageSize=4; //设置每页记录数
$sql=$sql1." limit ".($pageSize * ((empty($_REQUEST['page']) ? 1 : $_REQUEST['page'])-1)).", ".$pageSize;
$news_array=$conn->getall($sql);
$news_array1=$conn->getall($sql1);
$page_url="index.php"; //页面url地址
$totalnumber=count($news_array1); //获得总记录数
$midPage=5; //数字导航链接数
page();// 调用分页函数
for ($i = 0; $i <=ceil($totalnumber/$pageSize); $i++) $page_option[] = $i;//产生分页下拉列表数组
$smarty->assign("page_option",$page_option);
$smarty->assign("news_data",$news_array);
$smarty->assign("mytitle","企业网站首页");
$smarty->display("tpl.htm",$page);
?>
分页函数:
<?php
function page()
{
global $smarty,$start,$page_url,$pageSize,$midPage,$totalnumber;
$total = $totalnumber ; //获得总记录数
$totalPage = ceil($total/$pageSize); //获得总页数
$currentPage=@$_REQUEST['page']+0; //当前页
if(!is_numeric($currentPage) || $currentPage < 1 || empty($currentPage) || $currentPage > $totalPage)
$currentPage=1; //初始化当前页
$url = preg_replace(array("!(([&]|^)(page)[=]?([^&]+)?)|((([&]){2,})|(^[&])|([&]$))!",),array(""),$_SERVER["QUERY_STRING"]); // 设置地址,正则替换掉
$url.=($url?"&":"").'page'; // 追加
$start = ($currentPage-1)*$pageSize;
$back = $currentPage > 1?"<a href=/index.html"?$url=".($currentPage-1)."\" Title='上一页'><u><<</u></a>\n":"";
$next = $currentPage < $totalPage ?"<a href=/index.html"?$url=".($currentPage+1)."\" Title='下一页'><u>>></u></a>\n":"";
$first = $currentPage > 1?"<a href=/index.html"?$url=1\"><u>首页</u></a>\n":"";
$last = $currentPage < $totalPage?"<a href=/index.html"?$url=$totalPage\"><u>尾页</u></a>\n":"";
// 导航链接
$midPages = '';
$num = $currentPage-floor($midPage/2);
if($num > 0)
{
if(($totalPage-$num) < $midPage)
{
$tmp = $totalPage - $midPage;
$num = $tmp< 0 ? 1 : ++$tmp;
}
}else $num = 1;
for($i=1; $i<=$midPage;$i++,$num++)
{
if($num > $totalPage) break;
$midPages .= ($num == $currentPage) ? '['.$num.'] ' : "<a href='/blog_article/.html".$url."=".$num."'><u>".$num."</u></a> ";
}
$smarty->assign("page_total",$total); // 总计
$smarty->assign("page_currentPage",$currentPage); // 当前页码
$smarty->assign("page_totalPage",$totalPage); // 总页数
$smarty->assign("page_back",$back); // 上一页
$smarty->assign("page_next",$next); // 下一页
$smarty->assign("page_first",$first); // 首页
$smarty->assign("page_last",$last); // 尾页
$smarty->assign("page_midPages",$midPages); // 中间页
$smarty->assign("page_url",$page_url); // 当前页地址
}
?>
模板页 tpl.htm:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><{$mytitle}></title>
<link href="/blog_article/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="66%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC">
<tr align="center">
<td bgcolor="#FFFFFF">标题</td>
<td bgcolor="#FFFFFF">发布日期</td>
<td bgcolor="#FFFFFF">点击次数</td>
</tr>
<{section name=nloop loop=$news_data}>
<tr align="center" bgcolor="<{cycle values="#f1f2f3,#ffffff"}>">
<td><a href="/blog_article/show<{$news_data[nloop].id}>.htm"><{$news_data[nloop].title}></a></td>
<td><{$news_data[nloop].add_date|date_format:"%Y-%m-%d"}></td>
<td><{$news_data[nloop].hits}></td>
</tr>
<{sectionelse}>
<tr><td colspan="3">对不起,没有任何新闻输入!</td></tr>
<{/section}>
<tr><td colspan="3">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<form method="get" onSubmit="location.href='/blog_article//lt;{$page_url}/gt;/.html'">
<tr>
<td align="right">
共<{$page_total}>条
第<{$page_currentPage}>/<{$page_totalPage}>页
<{$page_first}>
<{$page_back}>
<{$page_midPages}>
<{$page_next}>
<{$page_last}>
<input name="page" type="text" size="1" value="<{$page_currentPage}>" id='page'>
<input type="submit" value="GO" >
转到
<select onChange="javascript:location.href='/blog_article/<{$page_url}>/page/.html'+this.options[this.selectedIndex].value;">
<{html_options options=$page_option selected=$page_currentPage}>
</select>
</td>
</tr>
</form>
</table>
</td></tr>
</table>
<{include file="bottom.htm"}>
</body>
</html>
一、Smarty缓存的配置:
$smarty->caching=true; //开启缓存,为false的时候缓存无效
$smarty->cache_lifetime=60; //缓存时间,单位是秒
二、Smarty缓存的使用与清除
$marty->clear_all_cache(); //清楚所有缓存
$marty->clear_cache("index.php"); //清楚index.php中的缓存
$marty->clear_cache("index.php',cache_id); //清楚index.php中指定ID的缓存
三、Smarty的局部缓存
第一个: insert_函数默认是不缓存,这个属性是不能修改
使用方法:例子
index.php中,
return date("Y-m-d H:m:s");
}
index.html中,
第二个: smarty_block
定义一个block:smarty_block_name($params,$content, &$smarty){return $content;} //name表示区域名
注册block:$smarty->register_block('name', 'smarty_block_name', false); //第三参数false表示该区域不被缓存
模板写法:{name}内容{/name}
写成block插件:
1)定义一件插件函数:block.cacheless.php,放在smarty的plugins目录
block.cacheless.php的内容如下:
function smarty_block_cacheless($param, $content, &$smarty) {
return $content;
}
?>
2) 编写程序及模板
示例程序:testCacheLess.php
include('Smarty.class.php');
$smarty = new Smarty;
$smarty->caching=true;
$smarty->cache_lifetime = 6;
$smarty->display('cache.tpl');
?>
所用的模板:cache.tpl
已经缓存的:{$smarty.now}<br>
{cacheless}
没有缓存的:{$smarty.now}
{/cacheless}
四、自定义缓存
设置cache_handler_func使用自定义的函数处理缓存
如:
function myCache($action, &$smarty_obj, &$cache_content, $tpl_file=null, $cache_id=null, $compile_id=null){
}
该函数的一般是根椐$action来判断缓存当前操作:
case "read"://读取缓存内容
case "write"://写入缓存
case "clear"://清空
}
一般使用md5($tpl_file.$cache_id.$compile_id)作为唯一的cache_id
如果需要,可使用gzcompress和gzuncompress来压缩和解压。