ThinkPHP 模版中动态 include文件 支持变量解析

jerry thinkphp 2015年11月19日 收藏
动态引用 文件 include  支持变量解析  
今天实例中用到了需要动态include文件 这样的方法,但thinkPHP不支持动态解析



使用场景: 用户登录后,根据等级调用不同的显示页面,因此需要动态引入文件,而thinkPHP恰恰又不支持动态引入,只好自己想办法了。


那应该怎么去使用呢?
如图所示:



以上就是数据库对应着文件。

再紧接着就是用户登录成功后,要调用不同的Level 也是不同的menu文件 ,如需要调用menu1.tpl 或 menu2.tpl 等。
但thinkPHP不支持动态引用,怎么办?
我个人的解决方案:
看图:
<if condition="$Think.session.admin_user.level eq 1">
    <include file="Public/menu"/>
<else />
    <include file="Public/menu" append="level" isVar="true"/>
</if>


说了,这里有对应着level 这个level是哪里来的呢? 是在controller中注入的
看图示:




为了给大家看的更明白,我把登录保存在session的数据,帖出来给大家看一下:免的不清楚是怎么回事


需要修改 \ThinkPHP\Library\Think\Template.class.php 对应着parseInclude() 方法:具体修改如图所示:






编辑:\ThinkPHP\Library\Think\Template.class.php  代码如下:
protected function parseInclude($content, $extend = true){      
        // 解析继承
        if($extend)
            $content    =   $this->parseExtend($content);
        // 解析布局
        $content    =   $this->parseLayout($content);
        $begin      =   $this->config['taglib_begin'];
        $end        =   $this->config['taglib_end'];
        // 读取模板中的include标签
        $find       =   preg_match_all('/'.$begin.'include\s(.+?)\s*?\/'.$end.'/is',$content,$matches);
        if($find) {
            for($i=0;$i<$find;$i++) {
                $include    =   $matches[1][$i];
                $array      =   $this->parseXmlAttrs($include);
                $file       =   $array['file'];
                //$view=Think::instance('Think\View');
                /*
                * 解析说明
                * 由于thinkPHP不能动态include文件
                * 因此这里需要做一些调整
                * 看看是否存在 append
                * **/
                if(isset($array['append'])){
                    if(isset($array[isvar]) && $array[isvar]=="true"){
                        $append=$this->get($array['append']);
                        unset($array['isVar']);
                    }else{
                        $append=$array['append'];
                    }
                    $file=$file.$append;
                    unset($array['append']);
                }
                if(isset($array['replace'])){
                    if(isset($array[isVar]) && $array[isVar]=="true"){
                        $file=$this->get($array['replace']);
                        unset($array['isVar']);
                    }else{
                        $file=$array['replace'];
                    }
                    unset($array['replace']);
                }
                unset($array['file']);
                $content    =   str_replace($matches[0][$i],$this->parseIncludeItem($file,$array,$extend),$content);
            }
        }
        return $content;
    }
需要的朋友拿走!!!!!!!!!!!