当前位置:首页 > PHP教程 > php应用 > 列表

php tpl模板引擎定义与使用示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-10 16:13:47 浏览: 评论:0 

这篇文章主要介绍了php tpl模板引擎定义与使用,结合实例形式分析了php模板引擎的定义与使用相关操作技巧,需要的朋友可以参考下。

本文实例讲述了php tpl模板引擎定义与使用,分享给大家供大家参考,具体如下:

tpl.php

  1. <?php 
  2. namespace tpl; 
  3. /** 
  4. * Class Tpl 
  5. */ 
  6. class Tpl 
  7.   protected $view_dir;//模板文件 
  8.   protected $cache_dir;//缓存文件 
  9.   protected $lifetime;//过期时间 
  10.   protected $vars = [];//存放显示变量的数组 
  11.    /** 
  12.    * Tpl constructor. 
  13.    * @param string $view_dir 
  14.    * @param string $cache_dir 
  15.    * @param string $lifetime 
  16.    */ 
  17.   public function __construct($view_dir=''$cache_dir=''$lifetime=''
  18.   { 
  19.     //如果模板文件不为空,则设置,为空则为默认值 
  20.     if (!emptyempty($view_dir)) { 
  21.       if ($this->check_dir($view_dir)) { 
  22.         $this->view_dir = $view_dir
  23.       } 
  24.     } 
  25.     //如果缓存文件不为空,则设置,为空时为默认值 
  26.     if (!emptyempty($cache_dir)) { 
  27.       if ($this->check_dir($cache_dir)) { 
  28.         $this->cache_dir = $cache_dir
  29.       } 
  30.     } 
  31.     //如果过期时间不为空,则设置,为空时为默认值 
  32.     if (!emptyempty($lifetime)) { 
  33.       $this->lifetime = $lifetime
  34.     } 
  35.   } 
  36.    /** 
  37.    * 对外公开的方法 
  38.    * @param string $name 
  39.    * @param string $value 
  40.    */ 
  41.   public function assign($name$value
  42.   { 
  43.     $this->vars[$name] = $value;//将传入的参数以键值对存入数组中 
  44.   } 
  45.    /** 
  46.    * 测试文件 
  47.    * @param $dir_path 
  48.    * @return bool 
  49.    */ 
  50.   protected function check_dir($dir_path
  51.   { 
  52.     //如果文件不存在或不是文件夹,则创建 
  53.     if (!file_exists($dir_path) || !is_dir($dir_path)) { 
  54.       return mkdir($dir_path, 0777, true); 
  55.     } 
  56.     //如果文件不可读或不可写,则设置模式 
  57.     if (!is_writable($dir_path) || !is_readable($dir_path)) { 
  58.       return chmod($dir_path, 0777); 
  59.     } 
  60.     return true; 
  61.   } 
  62.    /** 
  63.    * 展示方法 
  64.    * @param $view_name 
  65.    * @param bool $isInclude 
  66.    * @param null $uri 
  67.    */ 
  68.   public function display($view_name$isInclude=true, $uri=null) 
  69.   { 
  70.     //通过传入的文件名,得到模板文件路径 
  71.     $view_path = rtrim($this->view_dir, '/') . '/' . $view_name
  72.     //判断路径是否存在 
  73.     if (!file_exists($view_path)) { 
  74.       die('文件不存在'); 
  75.     } 
  76.     //通过传入的文件名得到缓存文件名 
  77.     $cache_name = md5($view_name . $uri) . '.php'
  78.     //缓过缓存文件名得到缓存路径 
  79.     $cache_path = rtrim($this->cache_dir, '/') . '/' .$cache_name
  80.     //判断缓存文件是否存在,如果不存在,重新生成 
  81.     if (!file_exists($cache_path)) { 
  82.       $php = $this->compile($view_path);//解析模板文件 
  83.       file_put_contents($cache_path$php);//缓存文件重新生成 
  84.     } else { 
  85.       //如果缓存文件存在,判断是否过期,判断模板文件是否被修改 
  86.       $is_time_out = (filectime($cache_path) + $this->lifetime) > time() ? false : true; 
  87.       $is_change = filemtime($view_path) > filemtime($cache_path) ? true : false; 
  88.       //如果缓存文件过期或模板文件被修改,重新生成缓存文件 
  89.       if ($is_time_out || $is_change) { 
  90.         $php = $this->compile($view_path); 
  91.         file_put_contents($cache_path$php); 
  92.       } 
  93.     } 
  94.     if ($isInclude) { 
  95.       extract($this->vars);//解析传入变量的数组 
  96.       include $cache_path;//展示缓存 
  97.     } 
  98.   } 
  99.    /** 
  100.    * 正则解析模板文件 
  101.    * @param string $file_name 
  102.    * @return mixed|string 
  103.    */ 
  104.   protected function compile($file_name
  105.   { 
  106.     $html = file_get_contents($file_name);//获取模板文件 
  107.     //正则转换数组 
  108.     $array = [ 
  109.       '{$%%}' => '<?=$\1?>'
  110.       '{foreach %%}' => '<?php foreach (\1): ?>'
  111.       '{/foreach}' => '<?php endforeach ?>'
  112.       '{include %%}' => ''
  113.       '{if %%}' => '<?php if (\1): ?>'
  114.       '{/if}' => '<?php endif ?>'
  115.       '{for %%}' => '<?php for (\1): ?>'
  116.       '{/for}' => '<?php endfor ?>'
  117.       '{switch %%}' => '<?php switch (\1) ?>'
  118.       '{/switch}' => '<?php endswitch ?>' 
  119.     ]; 
  120.     //遍历数组,生成正则表达式 
  121.     foreach ($array AS $key=>$value) { 
  122.       //正则表达式, 
  123.       $pattern = '#' . str_replace('%%''(.+?)' , preg_quote($key'#')) . '#'
  124.       if (strstr($pattern'include')) { 
  125.         $html = preg_replace_callback($pattern, [$this'parseInclude'], $html); 
  126.       } else { 
  127.         $html = preg_replace($pattern$value$html); 
  128.       } 
  129.     } 
  130.     return $html
  131.   } 
  132.    /** 
  133.    * 处理include表达式 
  134.    * @param array $data 
  135.    * @return string 
  136.    */ 
  137.   protected function parseInclude($data
  138.   { 
  139.     $file_name = trim($data[1], '\'"'); 
  140.     $this->display($file_name, false); 
  141.     $cache_name = md5($file_name) . '.php'
  142.     $cache_path = rtrim($this->cache_dir, '/') . '/' . $cache_name
  143.     return '<?php include "'.$cache_path.'" ?>'
  144.   } 

user_tpl,,,,从数据库中取值,作为参数传到模板文件,再解析模板文件

  1. <?php 
  2. include './sql/pdo.sql.php'
  3. include 'tpl.php'
  4.  $tpl = new tpl\Tpl('./view/''./cache/', 3000); 
  5. $link = new pdo_sql(); 
  6. $dat = ['menu_name''menu_url']; 
  7. $res = $link->table('blog_menu')->field($dat)->order('id ASC')->select(); 
  8. $tpl->assign('menu'$res); 
  9. $tpl->display('index.html');

Tags: tpl模板引擎定义

分享到: