超過(guò)模板引擎
發(fā)表時(shí)間:2024-02-26 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]總體來(lái)說(shuō),模板引擎是一個(gè)"好東西"作為一個(gè)PHP/Perl的程序員,許多模板引擎(fastTemplate, Smarty, Perl的 HTML::Template)的用戶(hù),以及我自己的(bTemplate [1] 的作者),我講這句話很多次了。然而,在同事進(jìn)行了長(zhǎng)時(shí)間的討論...
總體來(lái)說(shuō),模板引擎是一個(gè)"好東西"
作為一個(gè)PHP/Perl的程序員,許多模板引擎(fastTemplate, Smarty, Perl的 HTML::Template)的用戶(hù),以及我自己的(bTemplate [1] 的作者),我講這句話很多次了。
然而,在同事進(jìn)行了長(zhǎng)時(shí)間的討論之后,我確信了大量的模板引擎(包括我自己寫(xiě)的)根本是錯(cuò)誤的。 我想唯一的例外是Smarty [2],雖然我認(rèn)為它太龐大了,并且考慮到這篇文章的其余部分相當(dāng)?shù)臎](méi)有觀點(diǎn)。然而,就你為什么選擇Smarty(或者類(lèi)似的解決方案)有幾個(gè)理由,這些將在文章后面探究。
這篇文章討論模板的理論。我們將看到為什么大部分"模板引擎"是過(guò)于肥大,并且最終我們將回過(guò)頭來(lái)看一個(gè)輕量級(jí)的,小巧快速的另類(lèi)選擇。
下載和授權(quán)
模板類(lèi)和所有在本文中使用的例子能夠在這里下載:template.zip [3]。你可以根據(jù)發(fā)布 [4]在 OSI [5] 的 MIT Open Source License使用這些文件中的代碼。
一些關(guān)于模板引擎的背景知識(shí)
讓我們首先研究一下模板引擎的背景知識(shí)。模板引擎被設(shè)計(jì)出來(lái)用于把商業(yè)邏輯(例如從數(shù)據(jù)庫(kù)中獲取數(shù)據(jù)或者計(jì)算貿(mào)易耗費(fèi))從數(shù)據(jù)的表現(xiàn)分離開(kāi)來(lái)。模板引擎解決了兩個(gè)主要問(wèn)題:
如何實(shí)現(xiàn)這種分離
如何從HTML中分離"復(fù)雜"的php代碼
這從理論上使得沒(méi)有PHP經(jīng)驗(yàn)的HTML設(shè)計(jì)者能夠不看任何PHP代碼的條件下修改站點(diǎn)的外觀。
然而,模板系統(tǒng)也引入了一些復(fù)雜性。首先,我們現(xiàn)在有一個(gè)從多個(gè)文件得來(lái)的"頁(yè)面"。典型的,你可能有一個(gè)主PHP頁(yè)負(fù)責(zé)業(yè)務(wù)邏輯,一個(gè)外面的"布局"模板把整個(gè)站點(diǎn)的整體布局進(jìn)行渲染,一個(gè)內(nèi)部的內(nèi)容特定的模板,一個(gè)數(shù)據(jù)庫(kù)抽象層,以及模板引擎本身(這些可能是也可能不是由多個(gè)文件組成)。也有可能,一些人僅僅簡(jiǎn)單地在每個(gè)PHP頁(yè)面的首尾處包含"頭部"和"尾部"文件。
這產(chǎn)生的單個(gè)頁(yè)面的文件數(shù)量是很可觀的。然而,因?yàn)镻HP解析器非?,用到的文件數(shù)量可能不是那么重要除非你的站點(diǎn)流量很大。
然而,要記住模板系統(tǒng)引入了另外一個(gè)處理的層次。模板文件不僅僅是必須被包含,他們還必須被解析(取決于模板系統(tǒng),這個(gè)行為有很多種方式來(lái)完成 —— 使用正則表達(dá)式,字符串替換,編譯,詞法分析,等等)。這就是為什么對(duì)模板進(jìn)行測(cè)速變得流行起來(lái):因?yàn)槟0逡媸褂酶鞣N方法來(lái)解析數(shù)據(jù),它們中的一些比另外一些要快(而且,一些模板引擎提供了比其他引擎更加豐富的功能)。
模板引擎基礎(chǔ)知識(shí)
簡(jiǎn)單地說(shuō),模板引擎利用了用C寫(xiě)的腳本語(yǔ)言(PHP)。在這些嵌入的腳本語(yǔ)言中,你有另外一個(gè)偽腳本語(yǔ)言(無(wú)論你的模板引擎支持何種標(biāo)簽)。某些提供了簡(jiǎn)單的變量改寫(xiě)和循環(huán)。另外一些呢,則提供了條件和嵌套循環(huán)。而再其他的呢(至少有Smarty)提供了一個(gè)PHP的比較大的子集的接口,以及一個(gè)緩沖層。
為什么我認(rèn)為Smarty最接近于正確的方向?因?yàn)镾marty的目標(biāo)是"把業(yè)務(wù)邏輯從表現(xiàn)中分離出來(lái)"而不是"PHP代碼和HTML代碼的分離"。這看上去區(qū)別不大,但是它正是要點(diǎn)所在。任何模板引擎的最終目標(biāo)不應(yīng)該是從HTML移除所有的邏輯。它應(yīng)該是把表現(xiàn)邏輯從業(yè)務(wù)邏輯中分離出來(lái)。
有很多你僅僅需要邏輯來(lái)正確顯示你的數(shù)據(jù)的例子。例如,你的業(yè)務(wù)邏輯是從你的數(shù)據(jù)庫(kù)中獲取一個(gè)用戶(hù)列表。你的表現(xiàn)邏輯可能是把用戶(hù)列表用3列顯示?赡苄薷挠脩(hù)列表函數(shù)使得它返回3個(gè)數(shù)組是很笨的辦法。畢竟函數(shù)不應(yīng)該關(guān)心數(shù)據(jù)接下來(lái)要怎么處理這樣的事情。然而,在你的模板文件中缺少一些邏輯,那些正是你要做的事情。
在這點(diǎn)上Smarty是正確的(使得你利用PHP的很多東西),但是仍然有許多問(wèn)題;旧希鼉H僅提供了一個(gè)以新語(yǔ)法訪問(wèn)PHP的接口。以那開(kāi)始,它看上去不那么聰明了。是不是事實(shí)上寫(xiě) {foreach --args} 比 <? foreach --args ?> 更加簡(jiǎn)單?如果你認(rèn)為這樣簡(jiǎn)單一些,問(wèn)問(wèn)你自己是不是在包含一個(gè)巨大的模板庫(kù)來(lái)到成這種分離時(shí)能夠看到真正的意義要更加簡(jiǎn)單一些。誠(chéng)然,Smarty提供了許多其他很好的特性,但是看上去這些益處能夠在不用承擔(dān)包含Smarty類(lèi)庫(kù)的情況下也能獲得。
別樣的解決方案
我主要要鼓吹的一個(gè)解決方案是一個(gè)使用PHP代碼作為它的原生腳本語(yǔ)言的"模板引擎"。我知道這以前有人做過(guò)。而且當(dāng)我第一次看到的時(shí)候,我想,"為什么要這樣做?",然而我在考慮過(guò)我同事的論據(jù)之后,并且實(shí)現(xiàn)了一個(gè)直接使用PHP代碼仍然實(shí)現(xiàn)了把業(yè)務(wù)邏輯和表現(xiàn)邏輯分離的最終目標(biāo)的模板系統(tǒng)時(shí)(只用了大約25行代碼,不包括注釋?zhuān),我意識(shí)到了好處所在。
這個(gè)系統(tǒng)給像我們這樣的開(kāi)發(fā)者提供了對(duì)PHP核心函數(shù)的訪問(wèn)權(quán)利,我們能夠使用他們來(lái)格式化輸出——像日期格式化這樣的任務(wù)應(yīng)該在模板中處理。而且,因?yàn)槟0迨瞧胀ǖ腜HP文件,像Zend Performance Suite [6] 和PHP Accelerator [7] 這樣的字節(jié)碼緩存程序,能夠自動(dòng)緩存模板(因而,它們不需要在每次被訪問(wèn)時(shí)都被重新解釋執(zhí)行)。只要你記得把你的模板文件命名為程序能夠辨認(rèn)出是PHP文件的名字(通常,你僅僅需要確保它們有一個(gè).php的后綴),這確實(shí)是一個(gè)好處。
當(dāng)我認(rèn)為這種方法比經(jīng)典的模板引擎要高明得多時(shí),肯定還有一些要商榷的問(wèn)題。最明顯的反面意見(jiàn)是,PHP代碼太復(fù)雜了,而且設(shè)計(jì)者不應(yīng)該強(qiáng)迫去學(xué)習(xí)PHP。事實(shí)上,PHP代碼和像Smarty這樣的高級(jí)模板引擎的語(yǔ)法差不多簡(jiǎn)單(如果不是更簡(jiǎn)單的話)。而且,設(shè)計(jì)者能夠使用像<?=$var;?>這樣的簡(jiǎn)寫(xiě)PHP。這要比{$var}復(fù)雜很多?當(dāng)然,這要長(zhǎng)一些,但是如果你習(xí)慣了,你能夠獲得了PHP的威力而且不用承受解析模板文件帶來(lái)的負(fù)擔(dān)。
第二,而且可能更重要的,在基于PHP的模板中沒(méi)有固有的安全。Smarty提供了選項(xiàng)在模板文件中徹底禁用PHP代碼。它使得開(kāi)發(fā)者能夠約束模板能夠訪問(wèn)的函數(shù)和變量。如果你沒(méi)有不懷好意的設(shè)計(jì)者,這不會(huì)是什么問(wèn)題。然而,如果你允許外部的用戶(hù)上傳或者修改模板,我在此展示的基于PHP的解決方案絕對(duì)沒(méi)有任何安全可言!任何代碼都能放入模板中并且得到運(yùn)行。是的,甚至是一個(gè)print_r($GLOBALS)(這將改有惡意的用戶(hù)訪問(wèn)腳本中任何變量的權(quán)利)。
但是,我個(gè)人或者工作上寫(xiě)過(guò)的項(xiàng)目中,絕大多數(shù)不允許最終的用戶(hù)修改或者上傳模板。如果是這樣,問(wèn)題就不存在了。因此現(xiàn)在讓我們來(lái)看看代碼吧。
例子
這是一個(gè)簡(jiǎn)單的用戶(hù)列表頁(yè)面的例子。
<?php
require_once('template.php');
/**
* This variable holds the file system path to all our template files.
*/
$path = './templates/';
/**
* Create a template object for the outer template and set its variables.
*/
$tpl = & new Template($path);
$tpl->set('title', 'User List');
/**
* Create a template object for the inner template and set its variables. The
* fetch_user_list() function simply returns an array of users.
*/
$body = & new Template($path);
$body->set('user_list', fetch_user_list());
/**
* Set the fetched template of the inner template to the 'body' variable in
* the outer template.
*/
$tpl->set('body', $body->fetch('user_list.tpl.php'));
/**
* Echo the results.
*/
echo $tpl->fetch('index.tpl.php');
?>
其中有兩個(gè)值得注意的重要的概念。第一個(gè)就是內(nèi)部和外部模板的概念。外部模板包含定義站點(diǎn)主要外觀的HTML代碼。而內(nèi)部模板包含定義站點(diǎn)內(nèi)容區(qū)域的HTML代碼。當(dāng)然,你能夠在任意數(shù)目的層上有任意數(shù)目的模板。因?yàn)橥ǔN覀兘o每個(gè)區(qū)域使用不同的模板對(duì)象,所以沒(méi)有名字空間的問(wèn)題。例如,我能在內(nèi)部和外部模板中都有變量叫"title",而不用害怕有什么沖突。
這是一個(gè)用來(lái)顯示用戶(hù)列表的模板的簡(jiǎn)單例子。注意特殊的foreach和endforeach;語(yǔ)法在PHP手冊(cè)中有說(shuō)明 [8]。它完全是可選擇的。
而且,你可能奇怪我為什么要用.php的后綴來(lái)命名我的模板文件。呵呵,許多PHP字節(jié)碼緩存解決方案(比如 phpAccelerator)如果要被認(rèn)成PHP文件,需要文件有一個(gè).php后綴。因?yàn)檫@些模板是PHP文件,為什么不去獲得這些好處?
<table>
<tr>
<th>Id</th>
<th>Name</th>
<th>Email</th>
<th>Banned</th>
</tr>
<? foreach($user_list as $user): ?>
<tr>
<td align="center"><?=$user['id'];?></td>
<td><?=$user['name'];?></td>
<td><a href="mailto:<?=$user['email'];?>"><?=$user['email'];?></a></td>
<td align="center"><?=($user['banned'] ? 'X' : ' ');?></td>
</tr>
<? endforeach; ?>
這個(gè)layout.tpl.php是一個(gè)簡(jiǎn)單的例子(定義了整個(gè)頁(yè)面看上去是什么樣子的模板文件)
<html>
<head>
<title><?=$title;?></title>
</head>
<body>
<h2><?=$title;?></h2>
<?=$body;?>
</body>
</html>
而這是解析后的輸出。
<html>
<head>
<title>User List</title>
</head>
<body>
<h2>User List</h2>
<table>
<tr>
<th>Id</th>
<th>Name</th>
<th>Email</th>
<th>Banned</th>
</tr>
<tr>
<td align="center">1</td>
<td>bob</td>
<td><a href="mailto:bob@mozilla.org">bob@mozilla.org</a></td>
<td align="center"> </td>
</tr>
<tr>
<td align="center">2</td>
<td>judy</td>
<td><a href="mailto:judy@php.net">judy@php.net</a></td>
<td align="center"> </td>
</tr>
<tr>
<td align="center">3</td>
<td>joe</td>
<td><a href="mailto:joe@opera.com">joe@opera.com</a></td>
<td align="center"> </td>
</tr>
<tr>
<td align="center">4</td>
<td>billy</td>
<td><a href="mailto:billy@wakeside.com">billy@wakeside.com</a></td>
<td align="center">X</td>
</tr>
<tr>
<td align="center">5</td>
<td>eileen</td>
<td><a href="mailto:eileen@slashdot.org">eileen@slashdot.org</a></td>
<td align="center"> </td>
</tr>
</body>
</html>
緩存
因?yàn)榻鉀Q方案簡(jiǎn)單如斯,實(shí)現(xiàn)模板緩存成為了一個(gè)非常簡(jiǎn)單的任務(wù)。為了實(shí)現(xiàn)緩存,我們有一個(gè)二級(jí)類(lèi),它擴(kuò)展了原來(lái)的模板類(lèi)。CachedTemplate類(lèi)事實(shí)上使用和原來(lái)的模板類(lèi)相同的API。不同點(diǎn)是我們必須傳遞緩存的設(shè)置給構(gòu)造函數(shù),并且調(diào)用fetch_cache()而不是fetch()。
緩存的概念是簡(jiǎn)單的。簡(jiǎn)單的說(shuō),我們?cè)O(shè)置一個(gè)緩存時(shí)間來(lái)調(diào)表輸出應(yīng)該被保存的時(shí)長(zhǎng)(以秒為單位)。在產(chǎn)生一個(gè)頁(yè)面的所有工作開(kāi)展之前,我們必須首先測(cè)試頁(yè)面是否已經(jīng)被緩存了,而且緩存是否仍然沒(méi)有過(guò)期。如果緩存在這那,我們不需要在去麻煩數(shù)據(jù)庫(kù)和業(yè)務(wù)邏輯來(lái)產(chǎn)生頁(yè)面——我們可以簡(jiǎn)單地輸出原先緩存地內(nèi)容。
這種方法需要解決唯一地標(biāo)識(shí)緩存文件的問(wèn)題。如果一個(gè)站點(diǎn)是被一個(gè)顯示基于GET變量的中心腳本所控制,對(duì)每個(gè)PHP文件只有一個(gè)緩存不會(huì)有什么幫助。例如,如果index.php?page=about_us和用戶(hù)調(diào)用index.php?page=contact_us得到的顯示完全不同。
問(wèn)題是通過(guò)給每個(gè)頁(yè)面產(chǎn)生一個(gè)唯一的cache_id來(lái)解決的。為了做到這個(gè)目的,我們把事實(shí)上被請(qǐng)求的文件變成REQUEST_URI(基本上就是整個(gè)URL:index.php?foo=bar&bar=foo)。當(dāng)然,這個(gè)轉(zhuǎn)換過(guò)程是受到CachedTemplate類(lèi)控制的,但是要記住的重要的事情是你絕對(duì)要在創(chuàng)建CachedTemplate對(duì)象時(shí)傳遞一個(gè)唯一的cache_id。當(dāng)然下面有例子來(lái)說(shuō)明。
使用緩存包括以下步驟。
include() 模板源文件
創(chuàng)建一個(gè)新的CachedTemplate對(duì)象(并且傳遞路徑,唯一的cache_id和緩存過(guò)期時(shí)間給模板)
測(cè)試內(nèi)容是否已經(jīng)被緩存了
如果還促拿了,顯示文件并且結(jié)束腳本
否則,進(jìn)行所有的處理并且fetch()模板
對(duì)fetch_cache()的調(diào)用將自動(dòng)產(chǎn)生一個(gè)新的緩存文件
這個(gè)腳本假定你的緩存文件將放到./cache/中,因此你必須創(chuàng)建那個(gè)目錄并且改變它的目錄權(quán)限(chmod)使得Web服務(wù)器能夠?qū)懭胛募6疫要注意如果你在編寫(xiě)腳本的過(guò)程中發(fā)現(xiàn)了錯(cuò)誤,錯(cuò)誤也會(huì)被緩存!因而在你開(kāi)發(fā)的過(guò)程中禁用緩存是一個(gè)好主意。最好的辦法是給cache的生存周期傳遞0——這樣,緩存總是立即就失效了。
這是一個(gè)實(shí)際的緩存的例子。
<?php
/**
* Example of cached template usage. Doesn't provide any speed increase since
* we're not getting information from multiple files or a database, but it
* introduces how the is_cached() method works.
*/
/**
* First, include the template class.
*/
require_once('template.php');
/**
* Here is the path to the templates.
*/
$path = './templates/';
/**
* Define the template file we will be using for this page.
*/
$file = 'list.tpl.php';
/**
* Pass a unique string for the template we want to cache. The template
* file name + the server REQUEST_URI is a good choice because:
* 1. If you pass just the file name, re-used templates will all
* get the same cache. This is not the desired behavior.
* 2. If you just pass the REQUEST_URI, and if you are using multiple
* templates per page, the templates, even though they are completely
* different, will share a cache file (the cache file names are based
* on the passed-in cache_id.
*/
$cache_id = $file . $_SERVER['REQUEST_URI'];
$tpl = & new CachedTemplate($path, $cache_id, 900);
/**
* Test to see if the template has been cached. If it has, we don't
* need to do any processing. Thus, if you put a lot of db calls in
* here (or file reads, or anything processor/disk/db intensive), you
* will significantly cut the amount of time it takes for a page to
* process.
*
* This should be read aloud as "If NOT Is_Cached"
*/
if(!($tpl->is_cached())) {
$tpl->set('title', 'My Title');
$tpl->set('intro', 'The intro paragraph.');
$tpl->set('list', array('cat', 'dog', 'mouse'));
}
/**
* Fetch the cached template. It doesn't matter if is_cached() succeeds
* or fails - fetch_cache() will fetch a cache if it exists, but if not,
* it will parse and return the template as usual (and make a cache for
* next time).
*/
echo $tpl->fetch_cache($file);
?>
設(shè)置多個(gè)變量
我們?nèi)绾文軌蛲瑫r(shí)設(shè)置多個(gè)變量?這又一個(gè)使用由Ricardo Garcia貢獻(xiàn)的函數(shù)的例子。
<?php
require_once('template.php');
$tpl = & new Template('./templates/');
$tpl->set('title', 'User Profile');
$profile = array(
'name' => 'Frank',
'email' => 'frank@bob.com',
'password' => 'ultra_secret'
);
$tpl->set_vars($profile);
echo $tpl->fetch('profile.tpl.php');
?>
相關(guān)的模板是這樣的:
<table cellpadding="3" border="0" cellspacing="1">
<tr>
<td>Name</td>
<td><?=$name;?></td>
</tr>
<tr>
<td>Email</td>
<td><?=$email;?></td>
</tr>
<tr>
<td>Password</td>
<td><?=$password;?></td>
</tr>
而且解析后的輸出是這樣的:
<table cellpadding="3" border="0" cellspacing="1">
<tr>
<td>Name</td>
<td>Frank</td>
</tr>
<tr>
<td>Email</td>
<td>frank@bob.com</td>
</tr>
<tr>
<td>Password</td>
<td>ultra_secret</td>
</tr>
特別感謝Ricardo Garcia和Harry Fuecks他們的對(duì)這篇文章的貢獻(xiàn)。
相關(guān)的鏈接
這兒是一個(gè)總體上探究模板引擎的好去處的列表。
Web Application Toolkit Template View [9] - 許多關(guān)于模板實(shí)現(xiàn)方法的信息
MVC Pattern [10] - 描述3層應(yīng)用程序的設(shè)計(jì)
SimpleT [11] - 另一個(gè)使用PEAR::Cache_Lite的基于php的模板引擎
Templates and Template Engines [12] - 更多關(guān)于各種模板實(shí)現(xiàn)的信息
Smarty [13] - 編譯型模板引擎
模板類(lèi)源代碼
以及最后出場(chǎng)的,模板類(lèi)。
<?php
/**
* Copyright (c) 2003 Brian E. Lozier (brian@massassi.net)
*
* set_vars() method contributed by Ricardo Garcia (Thanks!)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
class Template {
var $vars; /// Holds all the template variables
var $path; /// Path to the templates
/**
* Constructor
*
* @param string $path the path to the templates
*
* @return void
*/
function Template($path = null) {
$this->path = $path;
$this->vars = array();
}
/**
* Set the path to the template files.
*
* @param string $path path to template files
*
* @return void
*/
function set_path($path) {
$this->path = $path;
}
/**
* Set a template variable.
*
* @param string $name name of the variable to set
* @param mixed $value the value of the variable
*
* @return void
*/
function set($name, $value) {
$this->vars[$name] = $value;
}
/**
* Set a bunch of variables at once using an associative array.
*
* @param array $vars array of vars to set
* @param bool $clear whether to completely overwrite the existing vars
*
* @return void
*/
function set_vars($vars, $clear = false) {
if($clear) {
$this->vars = $vars;
}
else {
if(is_array($vars)) $this->vars = array_merge($this->vars, $vars);
}
}
/**
* Open, parse, and return the template file.
*
* @param string string the template file name
*
* @return string
*/
function fetch($file) {
extract($this->vars); // Extract the vars to local namespace
ob_start(); // Start output buffering
include($this->path . $file); // Include the file
$contents = ob_get_contents(); // Get the contents of the buffer
ob_end_clean(); // End buffering and discard
return $contents; // Return the contents
}
}
/**
* An extension to Template that provides automatic caching of
* template contents.
*/
class CachedTemplate extends Template {
var $cache_id;
var $expire;
var $cached;
/**
* Constructor.
*
* @param string $path path to template files
* @param string $cache_id unique cache identifier
* @param int $expire number of seconds the cache will live
*
* @return void
*/
function CachedTemplate($path, $cache_id = null, $expire = 900) {
$this->Template($path);
$this->cache_id = $cache_id ? 'cache/' . md5($cache_id) : $cache_id;
$this->expire = $expire;
}
/**
* Test to see whether the currently loaded cache_id has a valid
* corrosponding cache file.
*
* @return bool
*/
function is_cached() {
if($this->cached) return true;
// Passed a cache_id?
if(!$this->cache_id) return false;
// Cache file exists?
if(!file_exists($this->cache_id)) return false;
// Can get the time of the file?
if(!($mtime = filemtime($this->cache_id))) return false;
// Cache expired?
if(($mtime + $this->expire) < time()) {
@unlink($this->cache_id);
return false;
}
else {
/**
* Cache the results of this is_cached() call. Why? So
* we don't have to double the overhead for each template.
* If we didn't cache, it would be hitting the file system
* twice as much (file_exists() & filemtime() [twice each]).
*/
$this->cached = true;
return true;
}
}
/**
* This function returns a cached copy of a template (if it exists),
* otherwise, it parses it as normal and caches the content.
*
* @param $file string the template file
*
* @return string
*/
function fetch_cache($file) {
if($this->is_cached()) {
$fp = @fopen($this->cache_id, 'r');
$contents = fread($fp, filesize($this->cache_id));
fclose($fp);
return $contents;
}
else {
$contents = $this->fetch($file);
// Write the cache
if($fp = @fopen($this->cache_id, 'w')) {
fwrite($fp, $contents);
fclose($fp);
}
else {
die('Unable to write cache.');
}
return $contents;
}
}
}
?>
另外一個(gè)值得注意的重要的事情是這里展示的解決辦法是我們傳遞模板的文件名給fetch()函數(shù)。如果你需要重用模板對(duì)象而不去re-set()所有的變量,這將比較有用。
并且記。耗0逡娴囊c(diǎn)是把你的業(yè)務(wù)邏輯從你的表現(xiàn)邏輯中分離出來(lái),而不是把你的PHP代碼從HTML代碼中分離出來(lái)。
本文附件下載:template.zip [1] http://www.massassi.com/bTemplate/
[2] http://smarty.php.net/
[3] http://www.sitepoint.com/examples/tempeng/template.zip
[4] http://opensource.org/licenses/mit-license.html
[5] http://www.opensource.org/
[6] http://zend.com/store/products/zend-performance-suite.php
[7] http://www.php-accelerator.co.uk/
[8] http://www.php.net/manual/en/control-structures.alternative-syntax.php
[9] http://wact.sourceforge.net/index.php/TemplateView
[10] http://www.phppatterns.com/index.php/article/articleview/11/
[11] http://simplet.sourceforge.net/
[12] http://phppatterns.com/index.php/article/articleview/4/1/1/
[13] http://smarty.php.net/
本文英文原版地址:http://www.sitepoint.com/article/1218/