SCREAM:对致命错误忽略错误抑制:调用未定义的方法

时间:2013-12-22 07:06:59

标签: php class methods loading

我已经阅读了很多有关此错误的帖子,但找不到任何可行的解决方案。

我有一个站点和主配置文件,可以加载所有类文件。

现在我在我的站点中创建了一个子文件夹,并包含了父文件夹中的主配置,它加载了类文件。

但是我不能使用子文件夹中的任何类函数。

我已经通过在一个类文件上添加一个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');

1 个答案:

答案 0 :(得分:0)

您需要从您的子网站/ index.php include master.config.php或class / class.document.php

include('../master.config.php');
include('../class/class.document.php');