本文介绍了PHP 不显示错误信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我安装了 XAMPP 1.7.4(使用 PHP 5.3.5),问题是 PHP 不显示任何错误消息.例如.如果我使用 mysql_connect()
不带参数连接到 MYSQL,PHP 不会抱怨必填字段.
I installed XAMPP 1.7.4 (with PHP 5.3.5), the problem is PHP does not display any error messages. E.g. if I connect to MYSQL with mysql_connect()
without parameters, PHP will not complain about the required fields.
这是为什么?
如何配置 PHP 以显示错误?
How can I configure PHP to display errors?
推荐答案
要在脚本级别打开错误,请在脚本顶部包含:
To turn on errors at the script level, include at the top of your script:
ini_set('display_errors', 1);
error_reporting(~0);
或者,如果它不是生产站点而只是一个开发/测试站点,您可以在 php.ini 中打开错误报告.搜索这些设置:
Alternatively, if it is not a production site and simply a development / testing site, you can turn on error reporting in php.ini. Search it for these settings:
error_reporting = E_ALL
;error_reporting = E_ERROR
display_errors = On
;display_errors = Off
这篇关于PHP 不显示错误信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!