2

如何显示 PHP 错误

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

我如何配置 PHP5 或 apache2?

谢谢。

4

2 回答 2

1

您可以使用该method_exists()方法来获取函数是否存在。

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

并使用下面的代码

ini_set('error_reporting', E_ALL);

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

于 2013-08-01T10:39:53.887 回答
0

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

或错误报告(E_ALL);在您的页面中

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

于 2013-08-01T10:36:16.563 回答