search
HomeBackend DevelopmentPHP TutorialthinkPHP3.0 framework implements the method of saving templates to the database

This article mainly introduces the method of saving templates to the database in the thinkPHP3.0 framework, and analyzes the specific implementation steps and related operating techniques of saving templates to the database in the process of developing CMS systems using the thinkPHP3.0 framework in the form of examples. Friends who need it can refer to

. The example in this article describes the method of saving templates to the database in the thinkPHP3.0 framework. Share it with everyone for your reference, the details are as follows:

When developing cms, it is used to save the template file into the database and display it on the page

Since thinkphp3.0 is directly from If you read and then parse the template file, you can only develop it yourself for storing the template in the database. There is also a mode function in thinkphp3.0. We can define our own mode to achieve the goal. So how to extend our own What about mode? As follows:

1. Enter

define('MODE_NAME','Ey');

in your entry file, where "Ey" is the name of your own extended mode, please Create the Ey folder under your thinkphp/Extend/Mode file

2. Modify

in the Ey directory and add the contents of the tags.php file as follows:

return array(
  'app_init'=>array(
  ),
  'app_begin'=>array(
    'ReadHtmlCache', // 读取静态缓存
  ),
  'route_check'=>array(
    'CheckRoute', // 路由检测
  ),
  'app_end'=>array(),
  'path_info'=>array(),
  'action_begin'=>array(),
  'action_end'=>array(),
  'view_begin'=>array(),
  'view_template'=>array(
    'ExtensionTemplate', // 自动定位模板文件(手动添加)
  ),
  'view_content'=>array(
    'ParseContent'//(手动添加)
  ),
  'view_filter'=>array(
    'ContentReplace', // 模板输出替换
    'TokenBuild',  // 表单令牌
    'WriteHtmlCache', // 写入静态缓存
    'ShowRuntime', // 运行时间显示
  ),
  'view_end'=>array(
    'ShowPageTrace', // 页面Trace显示
  ),
);

The comments at the back of the file were added manually for my modifications. I just modified the behavior of finding templates and parsing templates in the default tags in thinkphp

Set the system default Copy the action and view classes to the directory of Ey (due to parsing the content, the action and view classes need to be modified), modify the fetch method in action.class.php:

protected function fetch($templateFile='',$templateContent='' ){
    return $this->view->fetch($templateFile,$templateContent);
}

The modification in the view.class.php file is:

public function fetch($templateFile='',$templateContent = NULL) {
    $params['templateFile'] = $templateFile;
    $params['cacheFlag'] = true;
    if(isset($templateContent)) {
      $params['templateContent'] = $templateContent;
    }
    tag('view_template',$params);
    // 页面缓存
    ob_start();
    ob_implicit_flush(0);
    if('php' == strtolower(C('TMPL_ENGINE_TYPE'))) { // 使用PHP原生模板
      // 模板阵列变量分解成为独立变量
      extract($this->tVar, EXTR_OVERWRITE);
      // 直接载入PHP模板
      include $templateFile;
    }else{
      // 视图解析标签
      $params = array('var'=>$this->tVar,'content'=>$params['templateContent'],'file'=>$params['templateFile'],'cacheFlag'=>$params['cacheFlag']);
      tag('view_content',$params);
    }
    // 获取并清空缓存
    $content = ob_get_clean();
    // 内容过滤标签
    tag('view_filter',$content);
    // 输出模板文件
    return $content;
}

3. Expand your own search template class (self-extended behavior tp Let's put it in thinkphp\Extend\Behavior)
Add the ExtensionTemplateBehavior.class.php class in thinkphp\Extend\Behavior with the following content:

class ExtensionTemplateBehavior extends Behavior {
  // 行为扩展的执行入口必须是run
  public function run(&$params){
    if( is_array($params) ){
      if( array_key_exists('templateFile', $params) ){
        $params  = $this->parseTemplateFile($params);
      }else{
        //异常
        throw_exception(L('_TEMPLATE_NOT_EXIST_AND_CONTENT_NULL_').'['.$params['templateFile'].']');
      }
    }else{
      // 自动定位模板文件
      if(!file_exists_case($params))
        $params  = $this->parseTemplateFile($params);
    }
  }
  private function parseTemplateFile($params) {
    if( is_array($params) ) {
      $templateFile = $params['templateFile'];
    }else{
      $templateFile = $params;
    }
    if(!isset($params['templateContent'])) { // 是否设置 templateContent 参数
      //自动获取模板文件
      if('' == $templateFile){
        // 如果模板文件名为空 按照默认规则定位
        $templateFile = C('TEMPLATE_NAME');
      } elseif(false === strpos($templateFile,C('TMPL_TEMPLATE_SUFFIX'))) {
        $path  = explode(':',$templateFile);
        //如果是插件
        if($path[0] == 'Ext') {
          $templateFile = str_replace(array('Ext:',$path[1] . ':',$path[2] . ':'),'',$templateFile);
          $templateFile = SITE_ROOT . '/Ext/extensions/' . strtolower($path[1]) . '/' . $path[2] . '/Tpl/' . $templateFile . C('TMPL_TEMPLATE_SUFFIX');
        } else {
          // 解析规则为 模板主题:模块:操作 不支持 跨项目和跨分组调用
          $action = array_pop($path);
          $module = !empty($path)?array_pop($path):MODULE_NAME;
          if(!empty($path)) {// 设置模板主题
            $path = dirname(THEME_PATH).'/'.array_pop($path).'/';
          }else{
            $path = THEME_PATH;
          }
          $depr = defined('GROUP_NAME')?C('TMPL_FILE_DEPR'):'/';
          $templateFile = $path.$module.$depr.$action.C('TMPL_TEMPLATE_SUFFIX');
        }
      }
    } else {
      if('' == $templateFile){
        $depr = defined('GROUP_NAME')?C('TMPL_FILE_DEPR'):'/';
        $params['cacheFlag'] = false;
      } else {
        $path  = explode(':',$templateFile);
        //如果是插件
        if($path[0] == 'Ext') {
          $templateFile = str_replace(array('Ext:',$path[1] . ':',$path[2] . ':'),'',$templateFile);
          $templateFile = SITE_ROOT . '/Ext/extensions/' . strtolower($path[1]) . '/' . $path[2] . '/Tpl/' . $templateFile . C('TMPL_TEMPLATE_SUFFIX');
        } else {
          // 解析规则为 模板主题:模块:操作 不支持 跨项目和跨分组调用
          $action = array_pop($path);
          $module = !empty($path)?array_pop($path):MODULE_NAME;
          if(!empty($path)) {// 设置模板主题
            $path = dirname(THEME_PATH).'/'.array_pop($path).'/';
          }else{
            $path = THEME_PATH;
          }
          $depr = defined('GROUP_NAME')?C('TMPL_FILE_DEPR'):'/';
          $templateFile = $path.$module.$depr.$action.C('TMPL_TEMPLATE_SUFFIX');
        }
      }
    }
    if( is_array($params) ){
      $params['templateFile'] = $templateFile;
      return $params;
    }else{
      if(!file_exists_case($templateFile))
        throw_exception(L('_TEMPLATE_NOT_EXIST_').'['.$templateFile.']');
      return $templateFile;
    }
  }
}

4. Add a behavior class that parses your own template (this is similar to the default ParseTemplateBehavior.class.php of thinkphp3.0)

class ParseContentBehavior extends Behavior {
  protected $options  = array(
    // 布局设置
    'TMPL_ENGINE_TYPE'   => 'Ey',   // 默认模板引擎 以下设置仅对使用Ey模板引擎有效
    'TMPL_CACHFILE_SUFFIX' => '.php',   // 默认模板缓存后缀
    'TMPL_DENY_FUNC_LIST'  => 'echo,exit', // 模板引擎禁用函数
    'TMPL_DENY_PHP' =>false, // 默认模板引擎是否禁用PHP原生代码
    'TMPL_L_DELIM'     => '{',     // 模板引擎普通标签开始标记
    'TMPL_R_DELIM'     => '}',     // 模板引擎普通标签结束标记
    'TMPL_VAR_IDENTIFY'   => 'array',   // 模板变量识别。留空自动判断,参数为'obj'则表示对象
    'TMPL_STRIP_SPACE'   => true,    // 是否去除模板文件里面的html空格与换行
    'TMPL_CACHE_ON'     => true,    // 是否开启模板编译缓存,设为false则每次都会重新编译
    'TMPL_CACHE_TIME'    =>  0,     // 模板缓存有效期 0 为永久,(以数字为值,单位:秒)
    'TMPL_LAYOUT_ITEM'  =>  '{__CONTENT__}', // 布局模板的内容替换标识
    'LAYOUT_ON'      => false, // 是否启用布局
    'LAYOUT_NAME'    => 'layout', // 当前布局名称 默认为layout
    // Think模板引擎标签库相关设定
    &#39;TAGLIB_BEGIN&#39;     => &#39;<&#39;, // 标签库标签开始标记
    &#39;TAGLIB_END&#39;      => &#39;>&#39;, // 标签库标签结束标记
    &#39;TAGLIB_LOAD&#39;      => true, // 是否使用内置标签库之外的其它标签库,默认自动检测
    &#39;TAGLIB_BUILD_IN&#39;    => &#39;cx&#39;, // 内置标签库名称(标签使用不必指定标签库名称),以逗号分隔 注意解析顺序
    &#39;TAGLIB_PRE_LOAD&#39;    => &#39;&#39;,  // 需要额外加载的标签库(须指定标签库名称),多个以逗号分隔
    );
  public function run(&$_data){
    $engine = strtolower(C(&#39;TMPL_ENGINE_TYPE&#39;));
    //这个地方要判断是否存在文件
    if(&#39;think&#39;==$engine){
      if($this->checkCache($_data[&#39;file&#39;])) { // 缓存有效
        // 分解变量并载入模板缓存
        extract($_data[&#39;var&#39;], EXTR_OVERWRITE);
        //载入模版缓存文件
        include C(&#39;CACHE_PATH&#39;).md5($_data[&#39;file&#39;]).C(&#39;TMPL_CACHFILE_SUFFIX&#39;);
      }else{
        $tpl = Think::instance(&#39;ThinkTemplate&#39;);
        // 编译并加载模板文件
        $tpl->fetch($_data[&#39;file&#39;],$_data[&#39;var&#39;]);
      }
    } else if(&#39;ey&#39; == $engine) {
      if( !$_data[&#39;cacheFlag&#39;] ){
        $class  = &#39;Template&#39;.ucwords($engine);
        if(is_file(CORE_PATH.&#39;Driver/Template/&#39;.$class.&#39;.class.php&#39;)) {
          // 内置驱动
          $path = CORE_PATH;
        } else {
          // 扩展驱动
          $path = EXTEND_PATH;
        }
        if(require_cache($path.&#39;Driver/Template/&#39;.$class.&#39;.class.php&#39;)) {
          $tpl  = new $class;
          $tpl->fetch(&#39;&#39;,$_data[&#39;content&#39;],$_data[&#39;var&#39;]);
        } else { // 类没有定义
          throw_exception(L(&#39;_NOT_SUPPERT_&#39;).&#39;: &#39; . $class);
        }
      }else{
        //操作
        $cache_flag = true;
        if(isset($_data[&#39;content&#39;])){ //如果指定内容
          if ($_data[&#39;file&#39;]){ //指定缓存KEY
            $_data[&#39;file&#39;] = &#39;custom_&#39; . $_data[&#39;file&#39;];
          } else { //未指定缓存KEY,则不缓存
            $cache_flag = false;
          }
        } else {
          if (is_file($_data[&#39;file&#39;])){ //如果指定文件存在
            $_data[&#39;content&#39;] = file_get_contents($_data[&#39;file&#39;]);
          } else {
            throw_exception(L(&#39;_TEMPLATE_NOT_EXIST_&#39;).&#39;[&#39;.$_data[&#39;file&#39;].&#39;]&#39;);
          }
        }
        //这里文件和内容一定有一个存在,否则在之前就会有异常了
        if($cache_flag && $this->checkCache($_data[&#39;file&#39;],$_data[&#39;content&#39;]) ) { // 缓存有效
          // 分解变量并载入模板缓存
          extract($_data[&#39;var&#39;], EXTR_OVERWRITE);
          //载入模版缓存文件
          include C(&#39;CACHE_PATH&#39;).md5($_data[&#39;file&#39;]).C(&#39;TMPL_CACHFILE_SUFFIX&#39;);
        } else {
          $class  = &#39;Template&#39;.ucwords($engine);
          if(is_file(CORE_PATH.&#39;Driver/Template/&#39;.$class.&#39;.class.php&#39;)) {
            // 内置驱动
            $path = CORE_PATH;
          } else {
            // 扩展驱动
            $path = EXTEND_PATH;
          }
          if(require_cache($path.&#39;Driver/Template/&#39;.$class.&#39;.class.php&#39;)) {
            $tpl  = new $class;
            $tpl->fetch($_data[&#39;file&#39;],$_data[&#39;content&#39;],$_data[&#39;var&#39;]);
          } else { // 类没有定义
            throw_exception(L(&#39;_NOT_SUPPERT_&#39;).&#39;: &#39; . $class);
          }
        }
      }
    } else {
      //调用第三方模板引擎解析和输出
      $class  = &#39;Template&#39;.ucwords($engine);
      if(is_file(CORE_PATH.&#39;Driver/Template/&#39;.$class.&#39;.class.php&#39;)) {
        // 内置驱动
        $path = CORE_PATH;
      }else{ // 扩展驱动
        $path = EXTEND_PATH;
      }
      if(require_cache($path.&#39;Driver/Template/&#39;.$class.&#39;.class.php&#39;)) {
        $tpl  = new $class;
        $tpl->fetch($_data[&#39;file&#39;],$_data[&#39;var&#39;]);
      }else { // 类没有定义
        throw_exception(L(&#39;_NOT_SUPPERT_&#39;).&#39;: &#39; . $class);
      }
    }
  }
  protected function checkCache($tmplTemplateFile = &#39;&#39;,$tmplTemplateContent=&#39;&#39;) {
    if (!C(&#39;TMPL_CACHE_ON&#39;))// 优先对配置设定检测
      return false;
    //缓存文件名
    $tmplCacheFile = C(&#39;CACHE_PATH&#39;).md5($tmplTemplateFile).C(&#39;TMPL_CACHFILE_SUFFIX&#39;);
    if(!is_file($tmplCacheFile)){
      return false;
    }elseif (filemtime($tmplTemplateFile) > filemtime($tmplCacheFile)) {
      // 模板文件如果有更新则缓存需要更新
      return false;
    }elseif (C(&#39;TMPL_CACHE_TIME&#39;) != 0 && time() > filemtime($tmplCacheFile)+C(&#39;TMPL_CACHE_TIME&#39;)) {
      // 缓存是否在有效期
      return false;
    }
    // 开启布局模板
    if(C(&#39;LAYOUT_ON&#39;)) {
      $layoutFile = THEME_PATH.C(&#39;LAYOUT_NAME&#39;).C(&#39;TMPL_TEMPLATE_SUFFIX&#39;);
      if(filemtime($layoutFile) > filemtime($tmplCacheFile)) {
        return false;
      }
    }
    // 缓存有效
    return true;
  }
}

5. Add your own parsing The class TemplateEy.class.php of the template content (this is placed under the thinkphp\Extend\Driver\Template directory)
Just modified the system default ThinkTemplate.class.php class and modified the fetch method code as follows:

// 加载模板
public function fetch($templateFile,$templateContent,$templateVar) {
    $this->tVar = $templateVar;
    if($templateContent && !$templateFile) { //不缓存
      if(C(&#39;LAYOUT_ON&#39;)) {
        if(false !== strpos($templateContent,&#39;{__NOLAYOUT__}&#39;)) { // 可以单独定义不使用布局
          $templateContent = str_replace(&#39;{__NOLAYOUT__}&#39;,&#39;&#39;,$templateContent);
        }else{ // 替换布局的主体内容
          $layoutFile = THEME_PATH.C(&#39;LAYOUT_NAME&#39;).$this->config[&#39;template_suffix&#39;];
          $templateContent = str_replace($this->config[&#39;layout_item&#39;],$templateContent,file_get_contents($layoutFile));
        }
      }
      //编译模板内容
      $templateContent = $this->compiler($templateContent);
      extract($templateVar, EXTR_OVERWRITE);
      echo $templateContent;
    } else {
      $templateCacheFile = $this->loadTemplate($templateFile,$templateContent);
      // 模板阵列变量分解成为独立变量
      extract($templateVar, EXTR_OVERWRITE);
      //载入模版缓存文件
      include $templateCacheFile;
    }
}

6. Calling If the content of the template in the database does not exist, then we still read the content in the database:

if( array_key_exists( $display_mode, $params[&#39;tpl&#39;] ) && strlen($params[&#39;tpl&#39;][$display_mode]) > 0 ){
return $this->fetch("Ext:New:Frontend:show",$params[&#39;tpl&#39;][$display_mode]);
}else{
return $this->fetch("Ext:New:Frontend:show");
}

Related recommendations:

thinkphp3.2 implements methods of calling other modules across controllers

thinkPHP template arithmetic operations Analysis of related function usage

The above is the detailed content of thinkPHP3.0 framework implements the method of saving templates to the database. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.