2024年07月11日 建站教程
前面有提到,在DEDEcms的/member和/plus文件夹下,有许多模板需要调用当前模板的头部和尾部,但是笔者发现,同时使用同一个变量<?php pasterTempletDiy("head.htm"); ?>会出现问题,plus能正常使用,而会员中心却打不开,其实解决办法很简单,就是单独写变量。方法如下
//引入arc.partview.class.php类处理require_once(DEDEINC."/arc.partview.class.php");function pasterTempletDiy($path){global $cfg_basedir,$cfg_templets_skin;$tmpfile = $cfg_basedir.$cfg_templets_skin."/".$path;//模版文件的路径$dtp = new PartView();$dtp->SetTemplet($tmpfile);$dtp->Display();}
对应模板用
<?php pasterTempletDiy("head.htm"); ?><?php pasterTempletDiy("footer.htm"); ?>
//引入arc.partview.class.php类处理//////////////////////////////////////////////////////require_once(DEDEINC."/arc.partview.class.php");function pasterTempletDiy2($path){global $cfg_basedir,$cfg_templets_skin;$tmpfile = $cfg_basedir.$cfg_templets_skin."/".$path;//模版文件的路径$dtp = new PartView();$dtp->SetTemplet($tmpfile);$dtp->Display();}
对应模板用
本文链接:http://so.lmcjl.com/news/8273/