我看過phpcms、discuz的源碼,所以可能就缺乏創新了,不過原理大都相通,只是細節處理可能稍微不同。
說正題,以下開始談具體實現過程了。
1.首先要想好模板檔案放在哪裡?轉換後的php檔案放哪?還有怎麼命名?直接上原始碼:
複製程式碼 程式碼如下:
function template($tpl = 'index',$dir = 'hello')
{
if(!file_exists($pd = TPL_PATH.$dir.'/'))@ mkdir($pd,0777) or die("$pd目錄建立失敗");//如cache/tpl/hello/
if(!file_exists($td = TPL.$dir.'/'))@mkdir( $td,0777) or die("$td目錄建立失敗");//如data/tpl/hello/
$t2p = $pd.$tpl.'.php';//模板檔案正規轉換後形成的php檔,如cache/tpl/hello/index.php
$t2h = $td.$tpl.'.html';//html範本文件,如data/tpl/hello/index.html
2.什麼時候需要正規轉換?可以是正規後的php檔案不存在,或是正規前的html檔案改變時。這裡使用到了filemtime(string $path)函數,其回傳檔案最近修改時間。
複製程式碼 程式碼如下:
if(!file_exists($t2p) || @filemtime($t2p) }
return $t2p;//返回正規後的php文件,可以這樣呼叫:如include template('header','hello');
}
3.開始模板轉換,先從html檔案讀出,然後正規替換,最後寫入php檔案。
複製程式碼 程式碼如下:
function template_go($t2p,$t2h)
{
$str = @file_get_contents($t2h);//唸出
if($str === false) ex(請檢查!
4.正規規則,幾條比較簡略的正規替換語法。
複製程式碼 程式碼如下:
function template_do($str)
{
$str = preg_replace('/([nr+])t+/s', '\1', $str);//去掉TAB製表符。修正符號/s是不忽略換行
$str = preg_replace('/{$(.*)}/Us', '', $str);/*{$xx}換成 注意,必須加上修正符/U,只能符合一次。也可懶惰匹配*/
$str = preg_replace('/{php (.+)}/', '', $str);/*{php xxxx}換成 注意,不能加上修正符號/s,要考慮多次進行該正規而換行的問題*/
$str = preg_replace('/{template(.*)}/Us', '', $str);
/*{template(xx,yy)}換成 */
$str = preg_replace('/{include ( .*)}/Us', '', $str);/*{include xx.php}換成 */
$str = "".$str;
//$str = preg_replace('/s+/', ' ', $str);//看看網頁原始碼看看
return $str;
}
當然,這個函數現在還是比較簡陋的,期待能完善它。