首页  >  文章  >  后端开发  >  PHP 显示错误

PHP 显示错误

PHPz
PHPz原创
2024-08-29 13:06:25787浏览

PHP display_errors 有一些函数用于定义错误和警告列表以及适当且详细的信息。 PHP display_errors 为开发人员提供有关故障排除和调试的帮助。任何与 PHP 相关的应用程序由于某种原因而停止,都会包含一些需要作为 PHP display_errors 的一部分显示的错误或警告。执行时,display_errors 中涉及不同级别的错误。文档中提到的 PHP Display_error 命令在文档中出现时应始终处于“ON”模式。

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

语法

PHP display_errors 没有正确的语法,但是在执行 PHP 代码时,需要在脚本中包含一些具有特定格式的代码行。该行代码表示如下:

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

哪里,

  • ini_set(): 这个函数主要会尝试覆盖最初在 ini 文件中找到的配置。
  • display_errors: 它是确定是否需要确定错误或对最终用户隐藏的指令之一。
  • display_startup_errors: 这是另一个指令,其行为也与 display_errors 类似,不同之处在于显示启动错误将负责在屏幕启动时获取所有错误。
  • error_reporting():错误报告函数就像一个过滤器,主要负责过滤掉显示所需的错误。
  • E-ALL:这是开发者最推荐的指令,因为它为开发者提供了更容易理解和可读的格式。

display_errors 在 PHP 中如何工作?

  • PHP 对于 display_errors 具有重要意义,因为它使程序员能够排除故障并提供正确的可读和可理解的代码格式。
  • 它允许程序员使用它提供的有关错误和警告的详细信息集进行调试。
  • 在 PHP 中实现显示各种错误的最简单方法是在执行和编译时在 ini 文件中包含一组语句或代码。
  • 通过在ini文件中包含语法中提到的一些代码行,有助于实现执行时错误的详细显示。
  • 每个传递给函数参数的函数都有其自己的意义。
  • Ini() 函数总是尝试覆盖 PHP ini 文件中存在的当前配置,并且有两个指令虔诚地使用 ini 函数。这两个指令都有自己的作用。
  • 显示错误指令用于非强制需要显示错误的情况,并且在开发时,应关闭display_error指令;否则会造成障碍。
  • 相反,display_startup_error 具有不同的意义,因为它仅在代码执行从启动序列开始时使用,因为 Display error 指令从不参与相同的操作。它总是利用 ini 函数来提供全部功能。
  • 此外,还涉及与这两个指令相关的一些更有趣的特征;也就是说,它们将无法显示任何类型的解析错误。假设如果程序员忘记放置分号或错过放置花括号,那么在这种情况下,这对于程序员来说将是一个问题,正如上面提到的原因。
  • 有时,在实时环境或测试环境中,使用已经提到的指令进行测试变得困难;那么,在这种情况下,需要使用一些额外的指令,需要打开或关闭这些指令来处理浏览器的代码实现。
  • 上述场景的解决方案是使用以下命令将 display_error 指令设置为 ON,并将其包含在 ini 文件中,即 display_error = on。然后通过恢复apache tomcat工作文件夹中的ini文件来重新启动apache tomcat文件夹。
  • 这样,ini_set() 函数将合并所有主要指令作为参数,并在执行代码时相应地传递它们。

示例

以下是下面提到的示例

Example #1

This program demonstrates the inclusion of a set of code within the ini file, but it fails as the display error and display startup error does not include parse errors depicting the exact location of the failure within the file and the output as shown.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
ini_set('display_errors', 1);
ini_set('display_start_up_errors', 1);
error_reporting(E_ALL);
include("abcd.php");
?>
</body>
</html>

Output:

PHP 显示错误

Note: To get the above error displayed in the proper understandable and readable format, then it is very much needed to display errors, including parse errors for which it is needed to make a change in php.ini or pgp-fpm in apache tomcat, i.e. in the working folder of apache tomcat with the following command as part of the configuration file: display_errors = ON.

Example #2

This program demonstrates other types of errors that can be displayed, not necessarily including the overall PHP display_error functions. But sometimes, these kinds of errors or warnings come up with the developers as execution is almost smooth and should get easily solved.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$z = "Representation_of_Notice_Error.";
echo $z;
echo $Notice;
?>
</body>
</html>

Output:

PHP 显示错误

Example #3

This program demonstrates that the display_error with ini() function is enabled and restarted, as shown in the output. This warning comes into the picture when the display_error is enabled and restarted in the apache tomcat working folder.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
for($h_1 = 1; $h_1 <= 8 $h_1++)
{
echo $h_1;
}
?>
</body>
</html>

Output:

PHP 显示错误

Conclusion

PHP display_error is quite an appropriate functionality as part of PHP and provides aid to programmers by providing them with the ability and flexibility to troubleshoot and debug the application easily. It makes the time consumption of debugging and troubleshooting less. Overall, It is a very efficient approach to use display_errors in PHP to get detailed information for errors and warnings as it helps in many ways.

以上是PHP 显示错误的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn