织梦自界说php页面挪用include引用模板

我们有时候需要在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");?>
 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdxxs.html