为什么我会收到此错误?

时间:2017-02-03 09:10:33

标签: php

这是错误:

  

致命错误:调用未定义的方法Config :: getContent()   第9行/home/addicte1/public_html/panel/index.php。

此外,如果你想用眼睛看到它。

[http://www.addicted.gazduirejocuri.ro/panel/]

index.php脚本:

<?php
session_start();
define('panel', true);
spl_autoload_register(functions ($class) {
    include 'inc/' . $class . 'class.php';
});
Config::init()->getContent();
?>

1 个答案:

答案 0 :(得分:0)

错误消息非常有用。 Config::init()会返回Config。尝试调用getContent,但它不存在,因此出错。您需要检查此问题的原因。 getContent可能是inexistent。在这种情况下实现它。它可能是private。在这种情况下,您需要将其设为public或通过其他方法访问它。或者它可能是static。在这种情况下,您无法使用实例级->运算符访问它,并且需要使用Config::getContent()。要准确识别您的问题,您需要向我们展示如何实施该问题。