1

我的 PHP 错误报告有问题。我在 php.ini 中设置了 error_reporting 和 display_errors 的所有值,但我的代码仍然是空白页,直到我在 php 代码中添加一行:

error_reporting(E_ALL);

只有在我的代码中添加这一行后,我才能看到错误,例如

Notice: Undefined index: id in C:\...\index.php on line 4

如何在不添加此行的情况下更改 php.ini(或其他内容?)以获取错误?

4

1 回答 1

1
  1. 使用phpinfo()验证实际php.ini位置
  2. 重启网络服务器
于 2013-05-05T20:12:15.110 回答