Heim php教程 php手册 一个编译型的PHP模板引擎大致实现过程

一个编译型的PHP模板引擎大致实现过程

Jun 13, 2016 am 10:50 AM
003 php 实现 引擎 模板 von Zusammengestellt 过程

JTemplate.class.php

001
002
/**
003
 * @author  Jiawei
004
 * @Completed in 2012-6-29 0:23
005
 */
006
class JTemplate{
007
    //通过assign函数传入的变量临时存放数组
008
    private $templateVar = array();
009
    //模板目录
010
    private $templateDir = '';
011
    //编译目录
012
    private $templateCompileDir = '';
013
    
014
    private $fileName = '';
015
    /**
016
     * 构造函数
017
     * @param string $templateDir 模板目录
018
     * @param string $templateComplieDir 模板编译目录
019
     */
020
    public function __construct($templateDir,$templateComplieDir){
021
        $this->templateDir = $templateDir;
022
        $this->templateCompileDir = $templateComplieDir;
023
    }
024
    /**
025
     * 显示模板
026
     * @param string $fileName 模板文件名
027
     */
028
    public function display($fileName){
029
        $this->fileName = $fileName;
030
        if(file_exists($this->templateDir.'/'.$this->fileName)){
031
            $compileFileName = $this->templateCompileDir.'/'.$this->file_safe_name().'.php';
032
            if(!file_exists($compileFileName) || filemtime($compileFileName)templateDir.'/'.$this->fileName)){
033
                $this->del_old_file();
034
                $this->compile();
035
            }
036
            extract($this->templateVar);
037
            include $compileFileName;
038
        }else{
039
            $this->error('Sorry,the template file '.$this->fileName.' does not exist!!');
040
        }
041
    }
042
    /**
043
     * 获取编译文件名
044
     */
045
    private function get_compile_file(){
046
        $compileFile = explode('.',$this->fileName);
047
        unset($compileFile[count($compileFile)-1]);
048
        return implode('.',$compileFile);
049
    }
050
    /**
051
     * 编译
052
     */
053
    private function compile(){
054
        $fileHandle = @fopen($this->templateDir.'/'.$this->fileName, 'r');
055
        while(!feof($fileHandle)){
056
            $fileContent = fread($fileHandle,1024);
057
        }
058
        fclose($fileHandle);
059
        $fileContent = $this->template_replace($fileContent);
060
        //$compileFile = $this->get_compile_file($fileName);
061
        $fileHandle = @fopen($this->templateCompileDir.'/'.$this->file_safe_name().'.php','w');
062
        if($fileHandle){
063
            fwrite($fileHandle, $fileContent);
064
            fclose($fileHandle);
065
        }else{
066
            $this->error('Sorry,Compile dir can not write!');
067
        }
068
    }
069
    /**
070
     * 模板传值
071
     * @param string $valueName 模板中使用的变量名
072
     * @param $value 变量值
073
     */
074
    public function assign($valueName,$value){
075
        $this->templateVar[$valueName] = $value;
076
    }
077
    
078
    /**
079
     * 模板正则替换
080
     * @param string $content 替换内容
081
     * @return  string 替换过后的内容
082
     */
083
    private function template_replace($content){
084
        $orginArray = array(
085
            '//s',
086
            '//s',
087
            '/(.+?)/s',
088
            '//s',
089
            '//s',
090
            '//s',
091
            '//s',
092
            '//s',
093
            '/\{P:(.+?)\:}/s',
094
            '/\{C:(\w+)\}/s',
095
            '/\{I:(.+?)\}/s',
096
            '/\{F:(.+?)\}/s',
097
            '/\{EF:(.+?)\}/s',
098
            '/\{([a-zA-Z0-9_\[\]\'\"\$\.\x7f-\xff]+)\}/s',
099
        );
100
        
101
        $changeArray = array(
102
            '',
103
            '$$3){$countLoop++;?>',
104
            '$1',
105
            '',
106
            '',
107
            '',
108
            '',
109
            '',
110
            '',
111
            '',
112
            'templateDir.'/$1";?>',
113
            '',
114
            '',
115
            '',
116
        );
117
        return $repContent=preg_replace($orginArray,$changeArray,$content);
118
    }
119
    /**
120
     * 删除旧文件
121
     */
122
    private function del_old_file(){
123
        $compileFile = $this->get_compile_file($this->fileName);
124
        $files = glob($this->templateCompileDir.'/'.$compileFile.'*.php');
125
        // print_r($files);
126
        if($files){
127
            @unlink($files[0]);
128
        }
129
    }
130
    /**
131
     * 编译文件名安全处理方法
132
     * @return  string 返回编译文件名
133
     */
134
    private function file_safe_name(){
135
        $compileFile = $this->get_compile_file($this->fileName);
136
        return $compileFile.filemtime($this->templateDir.'/'.$this->fileName);
137
    }
138
    
139
    /**
140
     * 错误输出函数
141
     * @param string $content 错误输出信息
142
     */
143
    private function error($content){
144
        $stringHtml = '

';
145
        $stringHtml .= 'Error information:
';
146
        $stringHtml .= '';
147
        $stringHtml .= $content;
148
        $stringHtml .= '
';
149
        $stringHtml .= '
';
150
        exit($stringHtml);
151
    }
152
}
153
?>
index.php

view sourceprint?
01
02
/**
03
 * @author Jiawei
04
 */
05
include_once 'JTemplate/JTemplate.class.php';
06
$template = new JTemplate('template','compile');
07
$a = array('a','b','c','d');
08
define('_CORE_','aaa');
09
$template->assign('a', $a);
10
$template->display('index.html');
11
?>
 作者:袁家伟

Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße Artikel -Tags

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

PHP 8.4 Installations- und Upgrade-Anleitung für Ubuntu und Debian PHP 8.4 Installations- und Upgrade-Anleitung für Ubuntu und Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installations- und Upgrade-Anleitung für Ubuntu und Debian

CakePHP Datum und Uhrzeit CakePHP Datum und Uhrzeit Sep 10, 2024 pm 05:27 PM

CakePHP Datum und Uhrzeit

CakePHP-Projektkonfiguration CakePHP-Projektkonfiguration Sep 10, 2024 pm 05:25 PM

CakePHP-Projektkonfiguration

CakePHP-Datei hochladen CakePHP-Datei hochladen Sep 10, 2024 pm 05:27 PM

CakePHP-Datei hochladen

CakePHP-Routing CakePHP-Routing Sep 10, 2024 pm 05:25 PM

CakePHP-Routing

Besprechen Sie CakePHP Besprechen Sie CakePHP Sep 10, 2024 pm 05:28 PM

Besprechen Sie CakePHP

CakePHP-Kurzanleitung CakePHP-Kurzanleitung Sep 10, 2024 pm 05:27 PM

CakePHP-Kurzanleitung

So richten Sie Visual Studio-Code (VS-Code) für die PHP-Entwicklung ein So richten Sie Visual Studio-Code (VS-Code) für die PHP-Entwicklung ein Dec 20, 2024 am 11:31 AM

So richten Sie Visual Studio-Code (VS-Code) für die PHP-Entwicklung ein

See all articles