配置服务器以显示错误“调用未定义的方法stdClass ::”

时间:2013-08-01 10:32:51

标签: php apache

如何显示PHP错误

  

“调用未定义的方法stdClass ::”?

我如何配置PHP5或apache2?

感谢。

2 个答案:

答案 0 :(得分:1)

您可以使用method_exists()方法获取功能是否存在。

method_exists('Directory','read');
                ^^^         ^^^
               class_name   method_name

并使用以下代码

ini_set('error_reporting', E_ALL);

在php代码的顶部以获取所有错误。

答案 1 :(得分:0)

在PHP.ini文件中设置error_reporting = on

或error_reporing(E_ALL);在你的页面

http://in1.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting