PHP E_WARNING超出输入变量未显示

时间:2013-04-23 13:15:45

标签: php post warnings

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

我想出现以下错误:

  

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

在我的设置中,此错误在出现时不会出现。 这是我的php.ini文件:http://pastebin.com/iC7yQ2bm

按照以下讨论:Cannot post hidden input after update PHP 5.3.8 to PHP 5.3.24

感谢您的帮助

2 个答案:

答案 0 :(得分: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
遗憾的是,除了打印或不打印之外,你不能做什么

答案 1 :(得分: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