本文主要介紹了Smarty模板引擎快取機制,結合實例形式分析了Smarty模板引擎快取機制的原理,開啟與使用方法以及相關注意事項,需要的朋友可以參考下。希望對大家有幫助。
具體如下:
首先說下smarty快取和編譯,這是兩個不同的概念,編譯預設是啟動的,而快取機制需要人為開啟,smarty編譯過的文件還是php文件,所以執行的時候還是編譯的,如果涉及到資料庫,還是要存取資料庫的所以開銷也不小啦,所以需要smarty快取來解決!
1.開啟全域快取
$smarty->cache_dir = "/caches/"; //缓存目录 $smarty->caching = true; //开启缓存,为flase的时侯缓存无效 $smarty->cache_lifetime = 3600; //缓存时间
2.一個頁面使用多個快取
如:一個文章範本頁面會產生多個文章頁面,當然快取成很多頁面,實作起來很簡單,只要在display()方法設定第二個參數,就指定唯一識別碼即可。如下php程式碼:
$smarty->display('index.tpl',$_GET["article_id"]);
如上,透過第二個參數文章的id快取一個文章頁面。
3.為快取減小開銷
也就是說,已經快取的頁面無需進行資料庫的操作處理了,可透過is_cached()方法判斷!
if(!$smarty->is_cached('index.tpl')){ //调用数据库 } $smarty->display('index.tpl');
4.清除快取
一般在開發過程中是不開啟快取的,因為在快取時間內輸出結果不變,但是在應用過程中開啟快取能大幅提升web效能,清除快取方法如下:
clear_all_cache();//清除所有缓存 clear_cache('index.tpl');//清除index.tpl的缓存 clear_cache('index.tpl',cache_id);//清除指定id的缓存
5.關閉局部快取
如果一個頁面中一部分緩存,而另一部分不需要緩存,就可以這樣做,比如說顯示用戶登入的名稱就需要關閉緩存,smarty提供瞭如下三種解決方法:
(1)使用insert模板的一部分不被緩存
#定義一個inser標籤要使用的處理函數,函數名稱格式為:insert_xx(array $params, object &$smarty)其中的xx是insert的name,也就是說,如果你定義的函數為insert_abc,則範本中使用方法為{insert name=abc}
參數透過$params傳入
也可以做成insert外掛,檔名命名為:insert.xx.php,函數命名為:smarty_insert_aa($ params,&$smarty),xx定義同上
(2)$smarty->register_block($params, &$smarty)使整篇頁面中的某一塊不被快取
定義一個block:
smarty_block_name($params,$content, &$smarty){return $content;} //name表示区域名
註冊block:
$smarty->register_block(name, smarty_block_name, false); //第三参数false表示该区域不被缓存
範本寫法:
{name}内容 {/name}
寫成block外掛程式:
第一步:定義一件外掛函數:block.cacheless.php,放在smarty的plugins目錄
block.cacheless.php的內容如下:
<?php function smarty_block_cacheless($param, $content, &$smarty) { return $content; } ?>
#第二步:寫程式及模板
範例程式: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}
現在運行一下,發現是不起作用的,兩行內容都被緩存了
第三步:改寫Smarty_Compiler.class.php(註:該文件很重要,請先備份,以在必要時恢復)
查找:
複製程式碼 程式碼如下:
$this->_plugins[block ][$tag_command] = array($plugin_func, null, null, null, true);
修改成:
if($tag_command == cacheless) $this->_plugins[block][$tag_command] = array($plugin_func, null, null, null, false); else $this->_plugins[block][$tag_command] = array($plugin_func, null, null, null, true);
你也可以直接將原句的最後一個參數改成false ,即關閉預設快取。
(3)使用register_function阻止外掛程式從快取輸出
index.tpl:
<p>{current_time}{/p} index.php: function smarty_function_current_time($params, &$smarty){ return date("Y-m-d H:m:s"); } $smarty=new smarty(); $smarty->caching = true; $smarty->register_function('current_time','smarty_function_current_time',false); if(!$smarty->is_cached()){ ....... } $smarty->display('index.tpl');
註解:
定義一個函數,函數名格式為:smarty_type_name($params, &$smarty)
type為function
name為使用者自訂標籤名稱,這裡是{current_time}
兩個參數是必須的,即使在函數中沒有使用也要寫上。兩個參數的功能同上。
相關推薦:
#以上是Smarty模板引擎如何進行快取的機制詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!