程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php模板引擎技術簡單實現,php模板引擎

php模板引擎技術簡單實現,php模板引擎

編輯:關於PHP編程

php模板引擎技術簡單實現,php模板引擎


用了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模板引擎SMARTY
  • [PHP]模板引擎Smarty深入淺出介紹
  • 需要使用php模板的朋友必看的很多個頂級PHP模板引擎比較分析
  • PHP中MVC模式的模板引擎開發經驗分享
  • PHP原生模板引擎 最簡單的模板引擎
  • 在PHP模板引擎smarty生成隨機數的方法和math函數詳解
  • ThinkPHP模板引擎之導入資源文件方法詳解
  • ThinkPHP使用smarty模板引擎的方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved