给CodeIgniter加上phpcms的模板机制

CodeIgniter 很适合小站点应用开发,但是它自带的view功能可能会给不懂PHP的前端人员带来麻烦。 相比之下phpcms的view模板解析就强大多了,所以这里就把PHPCMS的模板解析功能剥离出来,加到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 ( "/\{([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str );
        $str = preg_replace ( "/\{\\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str );
        $str = preg_replace ( "/\{(\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\}/", "<?php echo \\1;?>", $str );
        $str = preg_replace("/\{(\\$[a-zA-Z0-9_\[\]\‘\"\$\x7f-\xff]+)\}/es", "\$this->addquote(‘<?php echo \\1;?>‘)",$str);
        $str = preg_replace ( "/\{([A-Z_\x7f-\xff][A-Z0-9_\x7f-\xff]*)\}/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 ( "/\[([a-zA-Z0-9_\-\.\x7f-\xff]+)\]/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("/([a-z]+)\=[\"]?([^\"]+)[\"]?/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[1]=".($op == ‘block‘ && strpos($v[2], ‘$‘) === 0 ? $v[2] : urlencode($v[2])) : "$v[1]=".(strpos($v[2], ‘$‘) === 0 ? $v[2] : urlencode($v[2]));
            if(in_array($v[1], $arr)) {
                $$v[1] = $v[2];
                continue;
            }
            $datas[$v[1]] = $v[2];
        }
        $str = ‘‘;
        $setpages = isset($setpages) && intval($setpages) ? intval($setpages) : 10;
        $num = isset($num) && intval($num) ? intval($num) : 20;
        $cache = isset($cache) && intval($cache) ? intval($cache) : 0;
        $return = isset($return) && trim($return) ? trim($return) : ‘data‘;
        if (!isset($urlrule)) $urlrule = ‘‘;
        if (!empty($cache) && !isset($page)) {
            $str .= ‘$tag_cache_name = md5(implode(\‘&\‘,‘.self::arr_to_html($datas).‘).\‘‘.$tag_id.‘\‘);if(!$‘.$return.‘ = tpl_cache($tag_cache_name,‘.$cache.‘)){‘;
        }
        if (in_array($op,$tools)) {
            switch ($op) {
                case ‘json‘:
                        if (isset($datas[‘url‘]) && !empty($datas[‘url‘])) {
                            $str .= ‘$json = @file_get_contents(\‘‘.$datas[‘url‘].‘\‘);‘;
                            $str .= ‘$‘.$return.‘ = json_decode($json, true);‘;
                        }
                    break;

                case ‘block‘:
                    $str .= ‘$block_tag = pc_base::load_app_class(\‘block_tag\‘, \‘block\‘);‘;
                    $str .= ‘echo $block_tag->pc_tag(‘.self::arr_to_html($datas).‘);‘;
                    break;
            }
        } else {
            if (!isset($action) || empty($action)) return false;
            if ( file_exists(APPPATH.‘libraries‘.DIRECTORY_SEPARATOR.$op.‘_tag.php‘)) {
                $str .= ‘if(!isset($CI))$CI =& get_instance();$CI->load->library("‘.$op.‘_tag");if (method_exists($CI->‘.$op.‘_tag, \‘‘.$action.‘\‘)) {‘;
                if (isset($start) && intval($start)) {
                    $datas[‘limit‘] = intval($start).‘,‘.$num;
                } else {
                    $datas[‘limit‘] = $num;
                }
                if (isset($page)) {
                    $str .= ‘$pagesize = ‘.$num.‘;‘;
                    $str .= ‘$page = intval(‘.$page.‘) ? intval(‘.$page.‘) : 1;if($page<=0){$page=1;}‘;
                    $str .= ‘$offset = ($page - 1) * $pagesize;$urlrule="‘.$urlrule.‘";‘;
                    $datas[‘limit‘] = ‘$offset.",".$pagesize‘;
                    $datas[‘action‘] = $action;
                    $str .= ‘$‘.$op.‘_total = $CI->‘.$op.‘_tag->count(‘.self::arr_to_html($datas).‘);‘;

                    $str .= ‘if($‘.$op.‘_total>$pagesize){ $pages = pages($‘.$op.‘_total, $page, $pagesize, $urlrule); } else { $pages="" ;}‘;
                }
                $str .= ‘$‘.$return.‘ = $CI->‘.$op.‘_tag->‘.$action.‘(‘.self::arr_to_html($datas).‘);‘;
                $str .= ‘}‘;
            }
        }
        if (!empty($cache) && !isset($page)) {
            $str .= ‘if(!empty($‘.$return.‘)){setcache($tag_cache_name, $‘.$return.‘, \‘tpl_data\‘);}‘;
            $str .= ‘}‘;
        }
        return "<"."?php ".$str."?".">";
    }

    /**
     * PC标签结束
     */
    static private function end_pc_tag() {
        return ‘<?php if(defined(\‘IN_ADMIN\‘) && !defined(\‘HTML\‘)) {if(isset($data))unset($data);echo \‘</div>\‘;}?>‘;
    }

    /**
     * 转换数据为HTML代码
     * @param array $data 数组
     */
    private static function arr_to_html($data) {
        if (is_array($data)) {
            $str = ‘array(‘;
            foreach ($data as $key=>$val) {
                if (is_array($val)) {
                    $str .= "‘$key‘=>".self::arr_to_html($val).",";
                } else {
                    if (strpos($val, ‘$‘)===0) {
                        $str .= "‘$key‘=>$val,";
                    } else {
                        $str .= "‘$key‘=>‘".self::new_addslashes($val)."‘,";
                    }
                }
            }
            return $str.‘)‘;
        }
        return false;
    }

    /**
     * 返回经addslashes处理过的字符串或数组
     * @param $string 需要处理的字符串或数组
     * @return mixed
     */
    function new_addslashes($string){
        if(!is_array($string)) return addslashes($string);
        foreach($string as $key => $val) $string[$key] = new_addslashes($val);
        return $string;
    }
}

然后在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);
    }

这样基本上完成了,可以直接phpcms模板语法了。

时间: 2024-08-04 18:42:02

给CodeIgniter加上phpcms的模板机制的相关文章

phpcms v9模板制作常用代码集合

phpcms v9模板制作常用代码集合(个人收藏) 1.截取调用标题长度 {str_cut($r[title],36,'')} 2.格式化时间 调用格式化时间 2011-05-06 11:22:33 {date('Y-m-d H:i:s',$r[inputtime])} 3.多栏目调用&多推荐位调用 调用需求:文章范围为59 60 61三个栏目,并且推送到了27 和28两个推荐位:从第三条开始,连续调用7篇文章. {pc:get sql="SELECT * FROM v9_news WH

phpcms v9模板制作常用代码集合(转)

phpcms v9模板制作常用代码集合(个人收藏) 1.截取调用标题长度 {str_cut($r[title],36,'')} 2.格式化时间 调用格式化时间 2011-05-06 11:22:33 {date('Y-m-d H:i:s',$r[inputtime])} 3.多栏目调用&多推荐位调用 调用需求:文章范围为59 60 61三个栏目,并且推送到了27 和28两个推荐位:从第三条开始,连续调用7篇文章. {pc:get sql="SELECT * FROM v9_news WH

PHPCMS V9模板设计常用变量

PHPCMS V9模板设计常用变量 (2011-11-03 10:04:57) 转载▼ 标签: 杂谈 分类: phpcmsv9 变量 全局 释义 {CHARSET} √ 字符集 $SEO['title'] √ 页面标题 $SEO['site_title'] √ 网站标题 $SEO['keyword'] √ keyword {$SEO['description'] √ description {CSS_PATH} √ css路径 {JS_PATH} √ js路径 {IMG_PATH} √ img路

Flask Web Development - Flask 模板1 - 模板机制&Jinja2引擎

节选自PartI Chapter3,这个chapter主要讲模板工作原理,这里讲的就是Jinja2这个模板,另外还提到了Flask-Bootstrap及Flask-Moment两个插件,前者对Flask使用Bootstrap做了些封装,后者对moment.js做了些封装.内容较多,估计分开搞. 模板存在的意义 可维护性高的代码是结构良好且整洁的. 当用户在网站注册一个账户时,他在表单里填入邮箱跟密码,并点击提交按钮.在server端就收到一个包含这些数据的request,再由Flask分发到相应

ECshop模板机制

ECshop模板机制整理 模板机制 近期新项目涉及到ECshop的二次开发,趁此良机正好可以对闻名已久的ECshop系统进行深入了解.要了解一个系统,那么该系统的模板机制就是最重要的一环.相关整理如下: 一.模板引擎: ECshop给我的第一印象是用的smarty模板引擎,可是很快就发现有些不一样,使用smarty模板引擎的系统通常会至少会包括smarty的核心文件:smarty.class.php.smarty_Compiler.php.config_File.class.php和debug.

Shopex模板机制总览(摘要版)

Shopex模板机制总览(摘要版) 此文档旨在为 shopex 二次开发提供一个便利的参考信息,借以打开 shopex 架构的大门,希望能带给读者一种登堂入室的感觉.由于 shopex 是半开放源代码的形式发布的,而且官方也没有意思要做好文档的公开工作,因此,二次开发中难题较多,这篇文章正是出于答疑解难的观点编写的.如果对诸位有大有裨益,则我会心花怒放:即是小有启发,也是我写作的最大满足:如果不才,读者未可以领略到一丝一息的有用内容,口下留情,适当一批或一评即好.本文要求读者有 PHP.HTML

PHPCMS V9模板中的常用变量、碎片代码详解

前面是变量,后面是调用变量的解释 {pc:content action="position"posid="12" thumb="1" order="id desc"num="10"} 图片新闻 {pc:contentaction="lists" catid="$r[catid]" num="1"thumb="1" order=&

ectouch第四讲之 ECshop模板机制整理

网上的资源感觉还是有些用,可以看看,帮助理解, ECshop模板机制整理 原文:http://blog.sina.com.cn/s/blog_6900af430100nkn8.html 数据处理: ECshop根目录下及admin目录下的文件是对应前台.后台页面的数据处理页,在这些文件中对页面所要展示的内容进行处理,之后通过smarty的assign()方法注册变量,最后通过display()方法加载相应的模板文件.但这里我们需要注意ECshop单独封装的几个方法,用于处理模板的公共内容及页面中

C++模板 &#183; 为什么要引入模板机制?

刚学过类模板时,很不理解,甚至觉得这简直没有用,在自己骗自己嘛!明明很方便的东西,偏偏要加个类模板来回折腾.可能因为我们刚开始写的程序很简单,有时候,可能程序复杂一点,对理解一些概念更有帮助. 今天在网上发现了一篇很好的文章,特此摘录. - 模板的概念 模板是实现代码重用机制的一种工具,它可以实现类型参数化, 即把类型定义为参数,从而实现了真正的代码可重用性.模板可以分为两类:一个是函数模板,一个是类模板. 举例理解: //函数1 int max(int a, int b) { return (