Smarty一直被人視為(wèi)是多(duō)餘的東西,我覺得認為(wèi)Smarty多(duō)餘的人才是多(duō)餘的....不說這些了。今天我就教大家寫個模闆引擎,讓大家都可(kě)以寫一個屬于自己的模闆引擎,而且看完這篇文(wén)章之後,你對Smarty的認識會更進一步的。我的模闆引擎名叫Stupid("傻瓜"的意思),我不喜歡太聰明的東西!
Stupid模闆引擎是由3個文(wén)件組成,他(tā)們分(fēn)别是:stupid.class.php,stupid_parser.class.php,stupid_window.class.php。
Stupid.class.php的任務(wù)是設置變量,模闆路徑,和顯示等功能(néng),而stupid_parser.class.php就是編譯模闆文(wén)件的,stupid_window.class.php是用(yòng)來調試用(yòng)的。
好了,我們現在就先編寫stupid.class.php吧。
1.新(xīn)建一個PHP文(wén)件名為(wèi):stupid.class.php。
我們的類叫Stupid,我們先設計一下成員變量吧。
成員變量有:$_tpl_vars, $_tpl_file, $_parser, $_window;
$_tpl_vars: 用(yòng)來保存模闆變量的;
$_tpl_file: 用(yòng)來保存模闆文(wén)件名的;
$_parser: 保存StupidParser對象的,就是編譯對象;
$_window: 保存StupidDebug對象的,就是調試對象;
下面定義了兩個常量,用(yòng)來存放模闆文(wén)件夾和編譯文(wén)件夾的:
define('TPL_DIR', './templates/');
define('TPL_C_DIR', './templates_c/');
開始編碼了>>>
<?php
define('TPL_DIR', './templates/');
define('TPL_C_DIR', './templates_c/');
class Stupid {
PRivate $_tpl_vars;
private $_tpl_file;
private $_parser;
private $_window;
}
?>
開始寫個構造器吧>>>
public function Stupid() {
if(!is_dir(TPL_DIR) || !is_dir(TPL_C_DIR)) {
exit('錯誤:請正确設置模闆文(wén)件夾和編譯文(wén)件夾');
}
}
在構造器中,我們判斷了模闆路徑和編譯路徑是否設置正确.
設計我們的方法
我們這個類中主要有以下方法:
assign(), set_tpl_dir(), set_parsed_dir(), display(), debug().
assign()方法:
assign()的用(yòng)處是設置模闆變量.代碼如下>>>
public function assign($var, $value) {
if(isset($var) && trim($var) != '') {
$this->_tpl_vars[$var] = $value;
return true;
} else {
exit('錯誤:請設置變量名');
}
}
我們先判斷用(yòng)戶是否設置了變量名,用(yòng)isset($var) && trim($var) != ''來判斷, trim($var) != ''是防止用(yòng)戶以空格來設置變量名.如果設置變量正确,我們就将他(tā)保存到成員變量_tpl_vars中.
display()方法
display()方法是Stupid類中較重要的方法,他(tā)是用(yòng)來顯示和檢測模闆是否更新(xīn)了,更新(xīn)了就再編譯,沒有更新(xīn)就用(yòng)原來編譯之後的文(wén)件.
代碼如下>>>
public function display($tpl_file) {
$template_file = TPL_DIR.$tpl_file;
if(!file_exists($template_file)) {
exit('錯誤:模闆文(wén)件不存在');
}
$parsed_file = TPL_C_DIR.md5($tpl_file).'.php';
if(!file_exists($parsed_file) || filemtime($parsed_file) < filemtime($template_file)) {
require_once './stupid_parser.class.php';
$this->_parser = new StupidParser();
$this->_parser->compile($tpl_file);
}
include $parsed_file;
}
這個方法是根據!file_exists($parsed_file)||filemtime($parsed_file)< filemtime($template_file)這條語句來判斷是否編譯過和模闆文(wén)件是否更新(xīn)過, 沒有編譯過和更新(xīn)過模闆文(wén)件都要重新(xīn)編譯.我們就要引入stupid_parser.class.php,并創建StupidParser對象,對模闆文(wén)件進行編譯.編譯完,我們就引入編譯之後的文(wén)件.這個編譯之後的模闆文(wén)件就是一個普通的PHP文(wén)件.
debug()方法
Debugg()方法就比較簡單,就是引入stupid_window.class.php文(wén)件,創建StupidDebuger對象,調用(yòng)StupidDebuger的start方法進行調試.
代碼如下>>>
public function debug ($tpl_file) {
if (include_once("stupid_window.class.php")) {
$this->_window = new Stupidwindow(TPL_DIR. $tpl_file);
$this->_window->start();
} else {
exit( '錯誤:Debuger類文(wén)件不存在');
}
}
至此,我們的Stupid類就寫完了!下次我要介紹StupidParser類的編寫.請繼續支持.大家有什麽意見或者建議可(kě)以提出!
show show全相:
<?php
define('TPL_DIR', './templates/');
define('TPL_C_DIR', './templates_c/');
class Stupid {
private $_tpl_vars;
private $_tpl_file;
private $_parser;
private $_debug;
public function Stupid() {
if(!is_dir(TPL_DIR) || !is_dir(TPL_C_DIR)) {
exit('錯誤:請正确設置模闆文(wén)件夾和編譯文(wén)件夾');
}
}
public function assign($var, $value) {
if(isset($var) && trim($var) != '') {
$this->_tpl_vars[$var] = $value;
return true;
} else {
exit('錯誤:請設置變量名');
}
}
public function display($tpl_file) {
$template_file = TPL_DIR.$tpl_file;
if(!file_exists($template_file)) {
exit('錯誤:模闆文(wén)件不存在');
}
$parsed_file = TPL_C_DIR.md5($tpl_file).'.php';
if(!file_exists($parsed_file) || filemtime($parsed_file) < filemtime($template_file)) {
require_once './stupid_parser.class.php';
$this->_parser = new StupidParser();
$this->_parser->compile($tpl_file);
}
include $parsed_file;
}
function debug($tpl_file) {
if (include_once("stupid_window.class.php")) {
$this->_window = new Stupidwindow($this->_template_dir . $tpl_file);
$this->_window->start();
} else {
exit( '錯誤:Debuger類文(wén)件不存在');
}
}
}
?>