php模板引擎技术简单实现


Posted in PHP onMarch 15, 2016

用了smarty,tp过后,也想了解了解其模板技术是怎么实现,于是写一个简单的模板类,大致就是读取模板文件->替换模板文件的内容->保存或者静态化 

tpl.class.php主要解析

assign 方法实现     

/**
     * 模板赋值操作
     * @param mixed $tpl_var 如果是字符串,就作为数组索引,如果是数组,就循环赋值
     * @param mixed $tpl_value 当$tpl_var为string时的值,默认为 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 方法实现

/**
      * 生成编译文件
      * @param string $tplFile 模板路径
      * @param string $comFile 编译路径
      * @return string
     */
    private function fetch($tplFile,$comFile){

      //判断编译文件是否需要重新生成(编译文件是否存在或者模板文件修改时间大于编译文件的修改时间)
      if(!file_exists($comFile) || filemtime($tplFile) > filemtime($comFile)){
        //编译,此处也可以使用ob_start()进行静态化
        $content = $this->tplReplace(file_get_contents($tplFile));
        file_put_contents($comFile, $content);
      }

    }

简单编译方法:按照规则进行正则替换

/**
     * 编译文件
     * @param string $content 待编译的内容
     * @return string
     */
    private function tplReplace($content){
      //转义左右定界符 正则表达式字符
      $left = preg_quote($this->left_delimiter,'/');
      $right = preg_quote($this->right_delimiter,'/');

      //简单模拟编译 变量
      $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

/**
     * 输出内容
     * @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 = '}'; 

    //内部临时变量,存储用户赋值
    private $tpl_vars = array();

    //错误信息
    private $errorMessage = '';

    /**
     * 修改类属性的值
     * @param array $configs 需要修改的相关属性及值
     * @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;
    }

测试

模板文件 testTpl.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>test_tpl_demo</title>
</head>
<body>
  {$name}:{$age}:{$message}
</body>
</html>
运行文件 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

以上就是本文的全部内容,希望对大家的学习有所帮助。

PHP 相关文章推荐
学习使用PHP数组
Oct 09 PHP
PHP的变量总结 新手推荐
Apr 18 PHP
解析PHP中的正则表达式以及模式匹配
Jun 19 PHP
PHP中CURL的CURLOPT_POSTFIELDS参数使用细节
Mar 17 PHP
修改destoon会员公司的伪静态中的com目录的方法
Aug 21 PHP
PHP对象相互引用的内存溢出实例分析
Aug 28 PHP
ThinkPHP模板中数组循环实例
Oct 30 PHP
自己写的php中文截取函数mb_strlen和mb_substr
Feb 09 PHP
php实现比较两个文件夹异同的方法
Jun 18 PHP
PHP实现QQ快速登录的方法
Sep 28 PHP
PHP实现数组根据某个单元字段排序操作示例
Aug 01 PHP
php7 list()、session及其他模块的修改实例分析
May 25 PHP
9个比较实用的php代码片段
Mar 15 #PHP
Laravel使用Caching缓存数据减轻数据库查询压力的方法
Mar 15 #PHP
php图片添加文字水印实现代码
Mar 15 #PHP
PHP闭包函数传参及使用外部变量的方法
Mar 15 #PHP
Yii rules常用规则示例
Mar 15 #PHP
基于laravel制作APP接口(API)
Mar 15 #PHP
使用Composer安装Yii框架的方法
Mar 15 #PHP
You might like
php站内搜索并高亮显示关键字的实现代码
2011/12/29 PHP
php数组中删除元素的实现代码
2012/06/22 PHP
destoon在360浏览器下出现用户被强行注销的解决方法
2014/06/26 PHP
PHP基于yii框架实现生成ICO图标
2015/11/13 PHP
总结一些js自定义的函数
2006/08/05 Javascript
jquery select操作的日期联动实现代码
2009/12/06 Javascript
不同Jquery版本引发的问题解决
2013/10/14 Javascript
js与jquery正则验证电子邮箱、手机号、邮政编码的方法
2016/07/04 Javascript
JS中parseInt()和map()用法分析
2016/12/16 Javascript
jQuery插件ajaxFileUpload使用详解
2017/01/10 Javascript
原生JS实现移动端web轮播图详解(结合Tween算法造轮子)
2017/09/10 Javascript
jQuery实现图片上传预览效果功能完整实例【测试可用】
2018/05/28 jQuery
vue.js父子组件通信动态绑定的实例
2018/09/28 Javascript
es6数值的扩展方法
2019/03/11 Javascript
关于layui导航栏不展示下拉列表的解决方法
2019/09/25 Javascript
解决echarts vue数据更新,视图不更新问题(echarts嵌在vue弹框中)
2020/07/20 Javascript
ant design vue datepicker日期选择器中文化操作
2020/10/28 Javascript
ReactRouter的实现方法
2021/01/25 Javascript
Python数据分析中Groupby用法之通过字典或Series进行分组的实例
2017/12/08 Python
python 字符串和整数的转换方法
2018/06/25 Python
Python http接口自动化测试框架实现方法示例
2018/12/06 Python
python实现爬取百度图片的方法示例
2019/07/06 Python
python2与python3爬虫中get与post对比解析
2019/09/18 Python
python3实现单目标粒子群算法
2019/11/14 Python
Pytorch中.new()的作用详解
2020/02/18 Python
PyTorch: Softmax多分类实战操作
2020/07/07 Python
Python变量及数据类型用法原理汇总
2020/08/06 Python
anaconda3安装及jupyter环境配置全教程
2020/08/24 Python
Pycharm如何自动生成头文件注释
2020/11/14 Python
美国一家主营日韩美妆护肤品的在线商店:iMomoko
2016/09/11 全球购物
New Era英国官网:美国棒球帽品牌
2018/03/21 全球购物
您附近的水疗和健康场所:Spafinder(美国)
2019/07/05 全球购物
酒店员工培训方案
2014/06/02 职场文书
大学运动会加油稿200字(5篇)
2014/09/27 职场文书
个人自查自纠材料
2014/10/14 职场文书
SQL Server携程核心系统无感迁移到MySQL实战
2022/06/01 SQL Server