php模板引擎技術(shù)簡(jiǎn)單實(shí)現(xiàn)
用了smarty,tp過后,也想了解了解其模板技術(shù)是怎么實(shí)現(xiàn),于是寫一個(gè)簡(jiǎn)單的模板類,大致就是讀取模板文件->替換模板文件的內(nèi)容->保存或者靜態(tài)化
tpl.class.php主要解析
assign 方法實(shí)現(xiàn)
/**
* 模板賦值操作
* @param mixed $tpl_var 如果是字符串,就作為數(shù)組索引,如果是數(shù)組,就循環(huán)賦值
* @param mixed $tpl_value 當(dāng)$tpl_var為string時(shí)的值,默認(rèn)為 null
*/
public function assign($tpl_var,$tpl_value=null){
if(is_array($tpl_var) && count($tpl_var) > 0){
foreach ($tpl_var as $k => $v) {
$this->tpl_vars[$k] = $v;
}
}elseif($tpl_var){
$this->tpl_vars[$tpl_var] = $tpl_value;
}
}
fetch 方法實(shí)現(xiàn)
/**
* 生成編譯文件
* @param string $tplFile 模板路徑
* @param string $comFile 編譯路徑
* @return string
*/
private function fetch($tplFile,$comFile){
//判斷編譯文件是否需要重新生成(編譯文件是否存在或者模板文件修改時(shí)間大于編譯文件的修改時(shí)間)
if(!file_exists($comFile) || filemtime($tplFile) > filemtime($comFile)){
//編譯,此處也可以使用ob_start()進(jìn)行靜態(tài)化
$content = $this->tplReplace(file_get_contents($tplFile));
file_put_contents($comFile, $content);
}
}
簡(jiǎn)單編譯方法:按照規(guī)則進(jìn)行正則替換
/**
* 編譯文件
* @param string $content 待編譯的內(nèi)容
* @return string
*/
private function tplReplace($content){
//轉(zhuǎn)義左右定界符 正則表達(dá)式字符
$left = preg_quote($this->left_delimiter,'/');
$right = preg_quote($this->right_delimiter,'/');
//簡(jiǎn)單模擬編譯 變量
$pattern = array(
//例如{$test}
'/'.$left.'\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)'.$right.'/i'
);
$replace = array(
'<?php echo $this->tpl_vars[\'${1}\']; ?>'
);
//正則處理
return preg_replace($pattern, $replace, $content);
}
display = fetch+echo
/**
* 輸出內(nèi)容
* @param string $fileName 模板文件名
*/
public function display($fileName){
//模板路徑
$tplFile = $this->template_dir.'/'.$fileName;
//判斷模板是否存在
if(!file_exists($tplFile)){
$this->errorMessage = '模板文件不存在';
return false;
}
//編譯后的文件
$comFile = $this->compile_dir.'/'.md5($fileName).'.php';
$this->fetch($tplFile,$comFile);
include $comFile;
}
其他屬性
//模板文件存放位置
private $template_dir = 'templates';
//編譯文件存放位置
private $compile_dir = 'compiles';
//左定界符
private $left_delimiter = '{';
//右定界符
private $right_delimiter = '}';
//內(nèi)部臨時(shí)變量,存儲(chǔ)用戶賦值
private $tpl_vars = array();
//錯(cuò)誤信息
private $errorMessage = '';
/**
* 修改類屬性的值
* @param array $configs 需要修改的相關(guān)屬性及值
* @return bool
*/
public function setConfigs(array $configs){
if(count($configs) > 0){
foreach ($configs as $k => $v) {
if(isset($this->$k))
$this->$k = $v;
}
return true;
}
return false;
}
測(cè)試
模板文件 testTpl.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test_tpl_demo</title>
</head>
<body>
{$name}:{$age}:{$message}
</body>
</html>
運(yùn)行文件 test_tpl.php
<?php
require 'Tpl.class.php';
$tpl = new Tpl();
$tplarr = array(
'name'=>'waited',
'age'=>'100'
);
$tpl->assign($tplarr);
$tpl->assign('message','this is a demo');
$tpl->display('testTpl.html');
?>
輸出:waited:100:this is a demo
生成編譯文件:972fa4d270e295005c36c1dbc7e6a56c.php
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助。
相關(guān)文章
thinkPHP3.x常量整理(預(yù)定義常量/路徑常量/系統(tǒng)常量)
這篇文章主要介紹了thinkPHP3.x常量,整理總結(jié)了thinkPHP3.x常用的各類常量,包括預(yù)定義常量、路徑常量及系統(tǒng)常量,需要的朋友可以參考下2016-05-05
PHP的fsockopen、pfsockopen函數(shù)被主機(jī)商禁用的解決辦法
這篇文章主要介紹了PHP的fsockopen、pfsockopen函數(shù)被主機(jī)商禁用的解決辦法,一是使用stream_socket_client函數(shù)代替,二是寫一個(gè)類似fsockopen功能的自定義函數(shù),需要的朋友可以參考下2014-07-07
php使用mb_check_encoding檢查字符串在指定的編碼里是否有效
本文說的是PHP使用mb_check_encoding檢查字符串在指定的編碼里是否有效的實(shí)例2013-11-11
PHP文件上傳小程序 適合初學(xué)者學(xué)習(xí)!
這篇文章主要為大家詳細(xì)介紹了PHP文件上傳小程序,給初學(xué)者提供的PHP文件上傳小程序,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-05-05
php實(shí)現(xiàn)微信公眾號(hào)創(chuàng)建自定義菜單功能的實(shí)例代碼
這篇文章主要介紹了php實(shí)現(xiàn)微信公眾號(hào)創(chuàng)建自定義菜單功能,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-06-06
WordPress中獲取指定分類及其子分類下的文章數(shù)目
這篇文章主要介紹了WordPress中獲取指定分類及其子分類下的文章數(shù)目的方法,文中總結(jié)了一些相關(guān)內(nèi)置函數(shù)的使用,需要的朋友可以參考下2015-12-12

