当前位置 : 主页 > 建站教程 > dedecms >

织梦自定义php页面调用include引用模板

来源:互联网 收集:自由互联 发布时间:2021-06-20
我们有时候需要在php文件中引用模板,举个例子,在会员中心的模板文件中,用include是无法直接引用前台的页面文件,如果我们要饮用,怎么操作呢? 首先打开/include/common.func.php文件
我们有时候需要在php文件中引用模板,举个例子,在会员中心的模板文件中,用include是无法直接引用前台的页面文件,如果我们要饮用,怎么操作呢?

 

首先打开/include/common.func.php文件,加入一个函数
 

function pasterTempletDiy($path)  {  require_once(DEDEINC."/arc.partview.class.php");  global $cfg_basedir,$cfg_templets_dir;  $tmpfile = $cfg_basedir.$cfg_templets_dir."/".$path;//模版文件的路径 $dtp = new PartView();  $dtp->SetTemplet($tmpfile);  $dtp->Display();  }
  自定义genban.php文件,内容如下:
  <?php require_once("../../include/common.inc.php"); ?>
  读取公共文件,就使用:   <?php pasterTempletDiy("default/head.htm");?>
       
网友评论
相关栏目