ホームページ > php教程 > php手册 > 黙ってシンプルにテンプレート エンジンを作成しました

黙ってシンプルにテンプレート エンジンを作成しました

WBOY
リリース: 2016-06-13 12:34:15
オリジナル
860 人が閲覧しました

エンジン ファイル

コードをコピー コードは次のとおりです:

/**
* Discuz テンプレート エンジンに基づいて Momo によって開発された OOP テンプレート エンジン。テンプレート キャッシュをサポートし、ハッシュ md5 値を生成できます。由hash值来判断模板是否被修改,假如被修改则重新生成缓存文件,假如没有被修改,则直接调用缓存文件.
* 版本:1.0.0.1 beta 测试版
*/
class mmtp{

var $left_tags="{";
var $right_tags="}";
var $tp_suffix=".html";
var $cache_suffix=".tpl";
var $tp_dir="./";
var $cache_dir="./";

/**
* 允许循环嵌套的次数,默认为5
*
* @var unknown_type
*/
var $nest = 5;
/**
* 模板路径
*
* @param unknown_type $tp_dir
* @return mmtp
*/

function __setdir($tp_dir){
if(file_exists($tp_dir)){
$this->tp_dir=$tp_dir; 
                        }else{ 
                                $this->error("模板路径不存在"); 
                        } 
        } 

        /** 
         * 设置缓存目录 
         * 
         * @param unknown_type $cache_dir 
         */ 
        function __setcdir($cache_dir){ 
                                if(file_exists($cache_dir)){ 
                                $this->cache_dir=$cache_dir; 
                        }else{ 
                                $this->error("缓存路径不存在"); 
                        } 
        } 

    /** 
     * 输出错误信息 
     * 
     * @param unknown_type $msg 
     */ 

        function error($msg){ 
                print "

".$msg."
";
}

/**                                                                                       */

function tp($file){
$tp_path=$this->tp_dir .$ファイル。 $this->tp_suffix;
$fp=fopen($tp_path,"rb");
if(!$this->file_test($tp_path,"r") && !$this-> match_hash($file)){
$template=$this->file_read($tp_path);

$var_regexp = "((\$[a-zA-Z_x7f-xff ][あ- zA-Z0-9_x7f-xff]*)([[a-zA-Z0-9_-."'[]$x7f-xff] ])*)"; 
$const_regexp = "([a-zA-Z_x7f-xff][a-zA-Z0-9_x7f-xff]*)"; 
$template = preg_replace("/([nr] )t /s","\1", $template); 
$template = preg_replace("//s","{\1}", $template); 
$template = preg_replace("/{langs (. ?)}/ies", " languagevar('\1')", $template); 
$template = str_replace("{LF}", "", $template); 

$template = preg_replace("/{(\$[a-zA-Z0-9_[]'"$.x7f-xff] )}/s"," $template = preg_replace("/$var_regexp/es", "$this->addquote('')", $template);
$template = preg_replace("/?>/es","$this->addquote('')" , $template);


$template = preg_replace("/[nrt]*{templates ([a-z0-9_] )}[nrt]*/is"," を含めない('".$this->cache_dir."\1".$this->cache_suffix."'); ?>n", $template);
$template = preg_replace("/[nrt] *{templates (. ?)}[nrt]*/is","n include('".$this->cache_dir."\1".$$this->cache_suffix."'); >n", $template);
$template = preg_replace("/[nrt]*{evals (. ?)}[nrt]*/ies","$this->stripvtags('nn','')",$template);
$template = preg_replace("/[nrt] *{echos (. ?)}[nrt]*/ies","$this->stripvtags('nn','')",$template);
$template = preg_replace("/[nrt]*{elseifs (. ?)}[nrt]*/ies","$this->stripvtags('nn' ,'')", $template);
$template = preg_replace("/[nrt]*{else}[nrt]*/is", "nn", $template );

for($i = 0; $i nest; $i ) {
$template = preg_replace("/[nrt ]*{ループ (S ) (S )}[nr]*(. ?)[nr]*{/loop}[nrt]*/ies","$this->stripvtags('n','n\3nn')",$template);
$template = preg_replace("/[nrt]*{loops ( S )s (S )s (S )}[nrt]*(. ?)[nrt]*{/loop}[nrt]*/ies","$this->stripvtags('n \3) { ?>','n\4n } } ?>n')", $template);
$template = preg_replace("/[nrt]*{ifs (. ?)}[nr]*(. ?)[nr]*{/if }[nrt]*/ies","$this->stripvtags('n','n\2nn')", $template) : 🎜> $template = preg_replace( "/ ?>[nr]* $hash=$this->file_hash($tp_path);
$head_hアッシュ「<! -- ハッシュ=".$ハッシュ。" -->";
$foot_time="";
$this->file_write($this->cache_dir.$file.".tpl",$head_hash.$template.$foot_time);



}
}

/**
* ファイルが存在し、読み取り権限があるかどうかを確認します
* *
* @paramknown_type $path
*/

FUNCTION FILE_TEST ($ PATH, $ Method) {
if (! File_exist ($ PATH) ||! path,$メソッド)){

}

/**                                                                            */
function file_read($path,$length=0){
If(!$this-> ;file_test($path,"r ")){
$fp =@fopen($path,"r ")

$contents=@fread($fp,$length); $ を返す内容;
🎜> /**
*ファイル内容の書き込み
*/
function file_write($path, $puts){

if(!$this->file_test($path,"w " )){
$fp=@fopen($path,"w "); }




/**                                                                       */
function file_hash($path){
return md5_file($path); 
}


/**
* テンプレートファイルとキャッシュファイルのハッシュ値を比較
* *
*/
function match_hash($file){
$read_hash=$this-> ;file_read($this->cache_dir .$file.$this->cache_suffix,46); 

$html_hash=$this->file_hash($this->tp_dir.$file.$this->tp_suffix); 

if(preg_match("/".$html_hash."/i",$read_hash)){
return true; 


}

function addquote($var) {
return str_replace("\"", """, preg_replace("/[a-zあ- Z0-9_-.x7f-xff] )]/s","['\1']",$var)); 
}

function transamp($str) {
$str = str_replace('&', '&', $str); 
$str = str_replace('&', '&', $str); 
$str = str_replace('"', '"', $str); 
$str; を返す 
}

function stripvtags($expr, $statement) {
$expr = str_replace("\"", """, preg_replace("//s","\1",$expr)); 
$statement = str_replace("\"", """, $statement); 
return $expr.$statement; 
}

}


$tp=new mmtp(); 
$tp->__setdir("./"); 
$tp->__setcdir("./cache/"); 
$tp->tp("index1"); 
$_GET[it]=sdhkadajksdhajdhkajsdhjkasdjkasdhasjdhkjsadhk; 
$name=2; 
$head="欢迎使用MoMoモ板引擎"; 
include("./cache/index1.tpl"); 
?> 




模板index.html


复制代码

代码如下:

{$ head}

模板index1.html

复制代記入

代码如下:

{テンプレートインデックス}

{if $name==1} 你好 {else} 谢谢 {/if}


この模板は默默今天下午写的、写的比較较仓奨、也许存在漏洞、这个版本只是测试版、以後我会逐渐的去完善、先発行出来、当作一前瞻。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート