码迷,mamicode.com
首页 > 其他好文 > 详细

Fatal error: Call to undefined function pasterTempletDiy()

时间:2016-12-08 18:31:25      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:.class   代码   php   call   file   dir   根目录   error   函数   

下面也简单说下这个函数的作用,主要用于dedecms留言板页面调用头部尾部文件,放到DEDE的外部函数接口文件里就可以了,具体路径位如根目录include文件夹下extend.func.php。

在extend.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();
}
 
模版里使用以下代码调用
<?php 
pasterTempletDiy("default/head.htm"); 

?>

Fatal error: Call to undefined function pasterTempletDiy()

标签:.class   代码   php   call   file   dir   根目录   error   函数   

原文地址:http://www.cnblogs.com/deram/p/6145602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!