频道栏目
首页 > 资讯 > MVC > 正文

一个自己写的PHP模板引擎

16-01-07        来源:[db:作者]  
收藏   我要投稿

这是一个自己写的编译型的模板引擎(不包括缓存部分)贴上代码。有问题可以随时跟帖。

单文件版:JTemplate.class.php

 

templateDir = $templateDir;
        $this->templateCompileDir = $templateComplieDir; 
    }
    /**
     * 显示模板方法
     * @param string $fileName 模板文件名
     */
    public function display($fileName){
        if(file_exists($this->templateDir.'/'.$fileName)){
            $compileFileName = $this->templateCompileDir.'/'.$this->file_safe_name($fileName).'.php';
            if(!file_exists($compileFileName) || filemtime($compileFileName)< filemtime($this->templateDir.'/'.$fileName)){
                $this->del_old_file($fileName);
                $this->compile($fileName);
            }
            extract($this->templateVar);
            include $compileFileName;
        }else{
            $this->error('Sorry,the template file '.$fileName.' does not exist!!');
        }
    }
    /**
     * 获取编译文件名方法
     * @param string $fileName 模板文件名
     */
    public function get_compile_file($fileName){
        $compileFile = explode('.',$fileName);
        unset($compileFile[count($compileFile)-1]);
        return implode('.',$compileFile);
    }
    /**
     * 编译方法
     * @param string $fileName 模板文件名
     */
    public function compile($fileName){
        $fileHandle = @fopen($this->templateDir.'/'.$fileName, 'r');
        while(!feof($fileHandle)){
            $fileContent = fread($fileHandle,1024);
        }
        fclose($fileHandle);
        $fileContent = $this->template_replace($fileContent);
        //$compileFile = $this->get_compile_file($fileName);
        $fileHandle = @fopen($this->templateCompileDir.'/'.$this->file_safe_name($fileName).'.php','w');
        if($fileHandle){
            fwrite($fileHandle, $fileContent);
            fclose($fileHandle);
        }else{
            $this->error('Sorry,Compile dir can not write!');
        }
    }
    /**
     * 模板传值方法
     * @param string $valueName 模板中使用的变量名
     * @param all $value 变量值
     */
    public function assign($valueName,$value){
        $this->templateVar[$valueName] = $value;
    }
       
    /**
     * 模板正则替换方法
     * @param string $content 替换内容
     * @return string 替换过后的内容
     */
    public function template_replace($content){
        $orginArray = array(
            '/{C}/s',
            '/{C}/s',
            '/{C}(.+?){C}/s',
            '/{C}/s',
            '/{C}/s',
            '/{C}/s',
            '/{C}/s',
            '/{C}/s',
            '/\{P:(.+?)\:}/s',
            '/\{C:(\w+)\}/s',
            '/\{I:(.+?)\}/s',
            '/\{F:(.+?)\}/s',
            '/\{EF:(.+?)\}/s',
            '/\{([a-zA-Z0-9_\[\]\'\"\$\.\x7f-\xff]+)\}/s',
        );
           
        $changeArray = array(
            '',
            '$$3){$countLoop++;?>',
            '$1',
            '',
            '',
            '',
            '',
            '',
            '',
            '',
            'templateDir.'/$1";?>',
            '',
            '',
            '',
        );
        return $repContent=preg_replace($orginArray,$changeArray,$content);
    }
    /**
     * 删除旧文件
     * @param string $fileName 模板文件名
     */
    public function del_old_file($fileName){
        $compileFile = $this->get_compile_file($fileName);
        $files = glob($this->templateCompileDir.'/'.$compileFile.'*.php');
        // print_r($files);
        if($files){
            @unlink($files[0]);
        }
    }
    /**
     * 编译文件名安全处理方法
     * @param string $fileName 传入模板文件名
     * @param string 返回编译文件名
     */
    public function file_safe_name($fileName){
        $compileFile = $this->get_compile_file($fileName);
        return $compileFile.filemtime($this->templateDir.'/'.$fileName);
    }
       
    /**
     * 错误输出函数
     * @param string $content 错误输出信息
     */
    public function error($content){
        $stringHtml = '
'; $stringHtml .= 'Error information:
'; $stringHtml .= ''; $stringHtml .= $content; $stringHtml .= ''; $stringHtml .= '
'; exit($stringHtml); } } ?>

 

模板引擎使用方法:

首先载入模板引擎核心文件JTemplate.class.php

include_once 'JTemplate/JTemplate.class.php';

实例化模板引擎:

$template = new JTemplate(模板目录,编译目录);

模板引擎方法:

1.assign方法用来将值传入模板中

$template->assign('模板引擎中用的变量名');

2.display显示模板文件方法:

$template->display('模板文件');

模板语法使用方法:

输出变量

{变量名} //不带$符号

判断语句

内容1内容2内容3//可拆分使用

遍历数组

循环内容

相当于

foreach($a as $v){}

遍历数组2:

循环内容当数组为空或传入变量不为数组的时候输出的内容

遍历中的计数器

要在遍历中使用计数器可以使用变量{countLoop}来计算当前循环的次数如果在if中使用请使用$countLoop

{countLoop} //在循环内输出当前循环的次数。在循环外使用输出最近的一次循环循环了多少次

//if语句中这样使用

输出常量

{C:常量名}

载入文件

{I:载入文件的路径及文件名及后缀}

执行函数不输出

{F:函数名(参数,参数)}

执行函数并输出函数返回的结果

{EF:函数名(参数,参数)}

执行PHP原生语句

{P:PHP语句:}

 

 


相关TAG标签
上一篇:PHP中MVC技术分析与其他语言对比
下一篇:苹果系统MAC 搭建php开发环境
相关文章
图文推荐

关于我们 | 联系我们 | 广告服务 | 投资合作 | 版权申明 | 在线帮助 | 网站地图 | 作品发布 | Vip技术培训 | 举报中心

版权所有: 红黑联盟--致力于做实用的IT技术学习网站