如何显示PHP中的所有错误?
我们可以使用error_reporting()函数显示PHP中的所有错误。它根据提供的级别在运行时设置error_reporting指令。如果没有提供级别,它将返回当前的错误报告级别。 error_reporting(E_ALL)级别表示所有错误、警告、通知等。
PHP代码:如果级别设置为零,即使包含不可用的文件也不会报告错误。
PHP
PHP
输出:
No output
No error is reported
PHP代码:
当级别设置为 E_ALL 时,将报告所有错误,包括所有警告和通知。
PHP
输出:
PHP Notice: Use of undefined constant gfg – assumed ‘gfg’ in /home/36649711d0ef1764ba295676144de779.php on line 5
PHP Notice: Use of undefined constant php – assumed ‘php’ in /home/36649711d0ef1764ba295676144de779.php on line 5
PHP Warning: include(gfgphp): failed to open stream: No such file or directory in /home/36649711d0ef1764ba295676144de779.php on line 5
参考资料:https://www. PHP.net/manual/en/函数.error-reporting。 PHP, https://www.geeksforgeeks.org/php-types-of-errors/