我已经阅读了很多有关此错误的帖子,但找不到任何可行的解决方案。
我有一个站点和主配置文件,可以加载所有类文件。
现在我在我的站点中创建了一个子文件夹,并包含了父文件夹中的主配置,它加载了类文件。
但是我不能使用子文件夹中的任何类函数。
我已经通过在一个类文件上添加一个die语句进行测试,并且脚本完美地“死了”#39;但问题是我无法使用这些功能。
.COM
class
--class.document.php
subsite
--index.php
master.config.php
index.php
使用subsite/index.php
SCREAM: Error suppression ignored for
Fatal error: Call to undefined method Document::loadHelper() in sitepath\subsite\index.php on line 13
并在第12行& 13
$Document = Document::getDocument();
$Document->loadHelper('properties');
答案 0 :(得分:0)
您需要从您的子网站/ index.php include
master.config.php或class / class.document.php
include('../master.config.php');
include('../class/class.document.php');