crx349 发表于 2015-9-21 15:11:08

CodeIgniter 结合phpcms模板功能

在CodeIgniter libraries中 增加 template_cache.php

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
*模板解析缓存
*/
final class template_cache {
   
    public $cache_path;
    public function __construct()
    {
      //$CI =& get_instance();
      $this->cache_path = APPPATH.'views';
    }
   
    /**
   * 编译模板
   *
   * @param $module    模块名称
   * @param $template    模板文件名
   * @param $istag    是否为标签模板
   * @return unknown
   */
   
    public function template_compile($module, $template, $style = 'default') {
      
      $tplfile= APPPATH.'views'.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.'.php';
      
      if (! file_exists ( $tplfile )) {
            show_error($tplfile ,500 ,'Template does not exist(1)');
      }
      
      $content = @file_get_contents ( $tplfile );

      $filepath = $this->cache_path.DIRECTORY_SEPARATOR.'caches_template'.DIRECTORY_SEPARATOR.$style.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR;
      
      
      if(!is_dir($filepath)) {
            mkdir($filepath, 0777, true);
      }
      $compiledtplfile = $filepath.$template.'.php';
      $content = $this->template_parse($content);
      $strlen = file_put_contents ( $compiledtplfile, $content );
      chmod ( $compiledtplfile, 0777 );
      return $strlen;
    }
   
    /**
   * 更新模板缓存
   *
   * @param $tplfile    模板原文件路径
   * @param $compiledtplfile    编译完成后,写入文件名
   * @return $strlen 长度
   */
    public function template_refresh($tplfile, $compiledtplfile) {
      $str = @file_get_contents ($tplfile);
      $str = $this->template_parse ($str);
      $strlen = file_put_contents ($compiledtplfile, $str );
      chmod ($compiledtplfile, 0777);
      return $strlen;
    }
   

    /**
   * 解析模板
   *
   * @param $str    模板内容
   * @return ture
   */
    public function template_parse($str) {
      $str = preg_replace ( "/\{template\s+(.+)\}/", "<?php include template(\\1); ?>", $str );
      $str = preg_replace ( "/\{include\s+(.+)\}/", "<?php include \\1; ?>", $str );
      $str = preg_replace ( "/\{view\s+(.+)\}/", "<?php \$this->load->view(\\1); ?>", $str );
      $str = preg_replace ( "/\{php\s+(.+)\}/", "<?php \\1?>", $str );
      //alex fix
      $str = preg_replace ( "/\{{if\s+(.+?)\}}/", "``if \\1``", $str );
      $str = preg_replace ( "/\{{else\}}/", "``else``", $str );
      $str = preg_replace ( "/\{{\/if\}}/", "``/if``", $str );
      
      $str = preg_replace ( "/\{if\s+(.+?)\}/", "<?php if(\\1) { ?>", $str );
      $str = preg_replace ( "/\{else\}/", "<?php } else { ?>", $str );
      $str = preg_replace ( "/\{elseif\s+(.+?)\}/", "<?php } elseif (\\1) { ?>", $str );
      $str = preg_replace ( "/\{\/if\}/", "<?php } ?>", $str );
      
      //for 循环
      $str = preg_replace("/\{for\s+(.+?)\}/","<?php for(\\1) { ?>",$str);
      $str = preg_replace("/\{\/for\}/","<?php } ?>",$str);
      //++ --
      $str = preg_replace("/\{\+\+(.+?)\}/","<?php ++\\1; ?>",$str);
      $str = preg_replace("/\{\-\-(.+?)\}/","<?php ++\\1; ?>",$str);
      $str = preg_replace("/\{(.+?)\+\+\}/","<?php \\1++; ?>",$str);
      $str = preg_replace("/\{(.+?)\-\-\}/","<?php \\1--; ?>",$str);
      //alex fix
      $str = preg_replace ( "/\``if\s+(.+?)\``/", "{{if \\1}}", $str );
      $str = preg_replace ( "/\``else``/", "{{else}}", $str );
      $str = preg_replace ( "/\``\/if\``/", "{{/if}}", $str );
      
      $str = preg_replace ( "/\{loop\s+(\S+)\s+(\S+)\}/", "<?php \$n=1;if(is_array(\\1)) foreach(\\1 AS \\2) { ?>", $str );
      $str = preg_replace ( "/\{loop\s+(\S+)\s+(\S+)\s+(\S+)\}/", "<?php \$n=1; if(is_array(\\1)) foreach(\\1 AS \\2 => \\3) { ?>", $str );
      $str = preg_replace ( "/\{\/loop\}/", "<?php \$n++;}unset(\$n); ?>", $str );
      $str = preg_replace ( "/\{(*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str );
      $str = preg_replace ( "/\{\\$(*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str );
      $str = preg_replace ( "/\{(\\$*)\}/", "<?php echo \\1;?>", $str );
      $str = preg_replace("/\{(\\$\'\"\$\x7f-\xff]+)\}/es", "\$this->addquote('<?php echo \\1;?>')",$str);
      $str = preg_replace ( "/\{(*)\}/s", "<?php echo \\1;?>", $str );
      $str = preg_replace("/\{pc:(\w+)\s+([^}]+)\}/ie", "self::pc_tag('$1','$2', '$0')", $str);
      $str = preg_replace("/\{\/pc\}/ie", "self::end_pc_tag()", $str);
      $str = "<?php defined('BASEPATH') or exit('No direct script access allowed.'); ?>" . $str;
      return $str;
    }

    /**
   * 转义 // 为 /
   *
   * @param $var    转义的字符
   * @return 转义后的字符
   */
    public function addquote($var) {
      return str_replace ( "\\\"", "\"", preg_replace ( "/\[(+)\]/s", "['\\1']", $var ) );
    }
   
    /**
   * 解析PC标签
   * @param string $op 操作方式
   * @param string $data 参数
   * @param string $html 匹配到的所有的HTML代码
   */
    public static function pc_tag($op, $data, $html) {
      preg_match_all("/(+)\=[\"]?([^\"]+)[\"]?/i", stripslashes($data), $matches, PREG_SET_ORDER);
      $arr = array('action','num','cache','page', 'pagesize', 'urlrule', 'return', 'start','setpages');
      $tools = array('json', 'xml', 'block', 'get');
      $datas = array();
      $tag_id = md5(stripslashes($html));
      //可视化条件
      $str_datas = 'op='.$op.'&tag_md5='.$tag_id;
      foreach ($matches as $v) {
            $str_datas .= $str_datas ? "&$v=".($op == 'block' && strpos($v, '
然后在global_helper中增加一个 template函数
if ( ! function_exists('template'))
{
    /**
   * 模板调用
   *
   * @param $module
   * @param $template
   * @param $istag
   * @return unknown_type
   */
    function template($module = 'expatree', $template = 'index', $style = 'expatree',$return_full_path=true) {
      global $CI;
      if(!isset($CI))$CI =& get_instance();
      if(!$style) $style = 'default';
      $CI->load->library('template_cache','template_cache');
      $template_cache = $CI->template_cache;
      //编译模板生成地址
      $compiledtplfile = $template_cache->cache_path.DIRECTORY_SEPARATOR.'caches_template'.DIRECTORY_SEPARATOR.$style.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.EXT;
      //视图文件
      $tplfile= APPPATH.'views'.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.EXT;
      if(file_exists($tplfile)) {
            if(!file_exists($compiledtplfile) || (@filemtime($tplfile) > @filemtime($compiledtplfile))) {   
                $template_cache->template_compile($module, $template, $style);
            }
      } else {
            //如果没有就调取默认风格模板
            $compiledtplfile = $template_cache->cache_path.DIRECTORY_SEPARATOR.'caches_template'.DIRECTORY_SEPARATOR.'default'.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.EXT;
            if(!file_exists($compiledtplfile) || (file_exists($tplfile) && filemtime($tplfile) > filemtime($compiledtplfile))) {
                $template_cache->template_compile($module, $template, 'default');
            } elseif (!file_exists($tplfile)) {
                show_error($tplfile ,500 ,'Template does not exist(0)');
            }
      }

      if($return_full_path)
            return $compiledtplfile;
      else
            return 'caches_template'.DIRECTORY_SEPARATOR.$style.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template;
    }
}然后在global_helper中增加一个 template函数if ( ! function_exists('template'))
{
    /**
   * 模板调用
   *
   * @param $module
   * @param $template
   * @param $istag
   * @return unknown_type
   */
    function template($module = 'expatree', $template = 'index', $style = 'expatree',$return_full_path=true) {
      global $CI;
      if(!isset($CI))$CI =& get_instance();
      if(!$style) $style = 'default';
      $CI->load->library('template_cache','template_cache');
      $template_cache = $CI->template_cache;
      //编译模板生成地址
      $compiledtplfile = $template_cache->cache_path.DIRECTORY_SEPARATOR.'caches_template'.DIRECTORY_SEPARATOR.$style.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.EXT;
      //视图文件
      $tplfile= APPPATH.'views'.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.EXT;
      if(file_exists($tplfile)) {
            if(!file_exists($compiledtplfile) || (@filemtime($tplfile) > @filemtime($compiledtplfile))) {   
                $template_cache->template_compile($module, $template, $style);
            }
      } else {
            //如果没有就调取默认风格模板
            $compiledtplfile = $template_cache->cache_path.DIRECTORY_SEPARATOR.'caches_template'.DIRECTORY_SEPARATOR.'default'.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template.EXT;
            if(!file_exists($compiledtplfile) || (file_exists($tplfile) && filemtime($tplfile) > filemtime($compiledtplfile))) {
                $template_cache->template_compile($module, $template, 'default');
            } elseif (!file_exists($tplfile)) {
                show_error($tplfile ,500 ,'Template does not exist(0)');
            }
      }

      if($return_full_path)
            return $compiledtplfile;
      else
            return 'caches_template'.DIRECTORY_SEPARATOR.$style.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.$template;
    }
}

然后在MY_Controller.php
增加一个方法
/**
   * 自动模板调用
   *
   * @param $module
   * @param $template
   * @param $istag
   * @return unknown_type
   */
    protected function view($view_file,$page_data=false,$cache=false)
    {
      $view_file=$this->template($this->page_data['controller_name'].$this->page_data['module_name'],$view_file);
      
      $this->load->view($view_file,$page_data);
    }
转载: hubj.cnblogs.com
页: [1]
查看完整版本: CodeIgniter 结合phpcms模板功能