当前位置:  编程技术>php
本页文章导读:
    ▪smarty缓存应用与清除      一、Smarty缓存的配置 $smarty->cache_dir = "/caches/"; //缓存目录 $smarty->caching = true; //开启缓存,为flase的时侯缓存无效 $smarty->cache_lifetime = 60; //缓存时间 二、 Smarty缓存的使用和清除 $smarty-&g.........
    ▪smarty分页的例子      配置页面 const.php:   代码如下: <? @session_start(); require_once("smarty.php");//加载smarty模板类 require_once("adodb/adodb.inc.php");//加载adodb数据库 //连接数据库 $dbhost = 'localhost';    // 数据库服务器 .........
    ▪有关smarty缓存的应用      一、Smarty缓存的配置:   代码如下: $smarty->cache-dir="目录名"; //创建缓存目录名 $smarty->caching=true; //开启缓存,为false的时候缓存无效 $smarty->cache_lifetime=60; //缓存时间,单位是秒 二、S.........

[1]smarty缓存应用与清除
    来源: 互联网  发布时间: 2013-12-24

一、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的缓存


    
[2]smarty分页的例子
    来源: 互联网  发布时间: 2013-12-24

配置页面 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:
 

代码如下:
<html>
<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>

    
[3]有关smarty缓存的应用
    来源: 互联网  发布时间: 2013-12-24

一、Smarty缓存的配置:
 

代码如下:
$smarty->cache-dir="目录名"; //创建缓存目录名
$smarty->caching=true; //开启缓存,为false的时候缓存无效
$smarty->cache_lifetime=60; //缓存时间,单位是秒

二、Smarty缓存的使用与清除
 

代码如下:
$marty->display("cache.tpl",cache_id); //创建带ID的缓存
$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中,
 

代码如下:
function insert_get_time(){
return date("Y-m-d H:m:s");
}
 

index.html中,
 

代码如下:
{insert name="get_time"}

第二个: 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的内容如下:
 

代码如下:
<?php
function smarty_block_cacheless($param, $content, &$smarty) {
return $content;
}
?>
 

2) 编写程序及模板
示例程序:testCacheLess.php
 

代码如下:
<?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使用自定义的函数处理缓存
如:
 

代码示例:
$smarty->cache_handler_func = "myCache";
function myCache($action, &$smarty_obj, &$cache_content, $tpl_file=null, $cache_id=null, $compile_id=null){
}
 

该函数的一般是根椐$action来判断缓存当前操作:
 

代码示例:
switch($action){
case "read"://读取缓存内容
case "write"://写入缓存
case "clear"://清空
}
 

一般使用md5($tpl_file.$cache_id.$compile_id)作为唯一的cache_id
如果需要,可使用gzcompress和gzuncompress来压缩和解压。


    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,