3

我的 PHP 5.3.24 有问题。我的 PHP 没有在我的脚本中显示 E_WARNING 消息。

我想出现以下错误:

警告:未知:输入变量超过 1000

在我的设置中,这个错误在它应该出现的时候没有出现。这是我的 php.ini 文件: http: //pastebin.com/iC7yQ2bm

遵循以下讨论:将 PHP 5.3.8 更新到 PHP 5.3.24 后无法发布隐藏输入

谢谢你的帮助

4

2 回答 2

3

http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-startup-errors

在你的 php.ini / htaccess

display_startup_errors = On

或者您可能需要更多...

error_reporting = -1
display_errors = On
display_startup_errors = On

可悲的是,您只能打印或不打印它

于 2013-04-23T13:20:51.243 回答
0

把它放在你的 php 文件的第一行

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

如果它没有显示错误,则表示没有错误。

此外,检查 - > http://php.net/manual/en/errorfunc.configuration.php http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting

于 2013-04-23T13:35:52.983 回答