search
Home类库下载PHP类库php error handling
php error handlingOct 08, 2016 pm 05:42 PM
php error handling

Error type

Because of the clever setting of the error type integer value, bitwise operators can be used

1 E_ERROR (integer)

Fatal runtime error. This type of error is generally an unrecoverable situation, such as a problem caused by memory allocation.
Causing the script to terminate and no longer continue to run
Example: Calling an undefined function, there is an uncaught exception

2 E_WARNING (integer)

Run-time warning (non-fatal error)
Only a prompt message is given, but the script does not Will terminate the operation.

4 E_PARSE (integer)

Compile time syntax parsing error.
Parse errors are generated only by the parser.
register_shutdown_function cannot capture this error that occurred in this file

8 E_NOTICE (integer)

Runtime notification. Indicates that the script encounters a situation that may appear as an error, but there may also be similar notifications in scripts that can run normally
Example: Using undefined variables

16 E_CORE_ERROR (integer)

During the PHP initialization startup process A fatal error occurred.
This error is similar to E_ERROR, but is generated by the PHP engine core.

32 E_CORE_WARNING (integer)

Warning (non-fatal error) occurred during PHP initialization startup process
Similar to E_WARNING, but generated by the PHP engine core

E_COMPILE_

Compilation related
64 E_COMPILE_ERROR (integer)
Fatal compilation Time error. Similar to E_ERROR, but generated by the Zend script engine. since PHP 4
128 E_COMPILE_WARNING (integer)
Compile time warning (non-fatal error). Similar to E_WARNING, but generated by the Zend scripting engine.

E_USER_

User-generated
256 E_USER_ERROR (integer)
User-generated error message. Similar to E_ERROR, but is generated by the user using the PHP function trigger_error() in the code. since PHP 4
512 E_USER_WARNING (integer)
Warning message generated by the user. Similar to E_WARNING, but is generated by the user using the PHP function trigger_error() in the code. since PHP 4
1024 E_USER_NOTICE (integer)
Notification information generated by the user. Similar to E_NOTICE, but is generated by the user using the PHP function trigger_error() in the code

2048 E_STRICT (integer)

Enables PHP's suggestions for code modifications to ensure the best interoperability and forward progress of the code compatibility.

4096 E_RECOVERABLE_ERROR (integer)

A fatal error that can be caught. It indicates that a potentially dangerous error has occurred, but has not caused the PHP engine to become unstable. If the error is not caught by a user-defined handler (set_error_handler()), it will become an E_ERROR and the script will terminate.

8192 E_DEPRECATED (integer)

Runtime notification.
When enabled, a warning will be given for code that may not work properly in future versions.

16384 E_USER_DEPRECATED (integer)

Warning message generated by the user. Similar to E_DEPRECATED, but is generated by the user using the PHP function trigger_error() in the code.

30719 E_ALL (integer)

E_STRICT All errors and warning letters out of the

Error handling related functions

error_reporting

int error_reporting ([ int $level ] )

Set what kind of PHP errors should be reported

/ / Close all PHP error reporting and return the new error reporting level error_reporting(0); // Report simple running errorserror_reporting(E_ERROR | E_WARNING | E_PARSE);

If no parameters are used, the current error reporting level will be returned

error_get_last

Get the last error that occurred, register_shutdown_function() is often used

array error_get_last (void)

return result

Array(
[type] => 8
[message] => Undefined variable: a [file ] => C:WWWindex.php [line] => 2)

trigger_error

Generate a user-level error/warning/notice message

bool trigger_error ( string $error_msg [, int $error_type = E_USER_NOTICE ]

error_log

Send error information to the error log of the web server, or to a file. If the file does not exist, it will be created

bool error_log ( string $message [, int $message_type = 0 [, string $destination [ , string $extra_headers ]]] )

message_type
Set where errors should be sent
0 message is sent to the PHP system log, using the operating system's logging mechanism or a file, depending on the setting of error_log in php.ini. This is the default option.
1 The message is sent to the email address set by the parameter destination. The fourth parameter extra_headers is only used in this type.
3 The message is sent to the location. destination file. The character message is not treated as a new line by default.
4 message sent directly to SAPI’s log handler

set_error_handler()

Set a user-defined error handling function to handle errors that occur in the script

mixed set_error_handler ( callable $error_handler [, int $error_types = E_ALL | E_STRICT ] )


Error types specified in error_types will bypass the PHP standard error handler unless the callback function returns FALSE. The error_reporting() setting will have no effect and your error handler will continue to be called, it is your responsibility to use die() when needed.

NOTE
The following levels of errors cannot be handled by user-defined functions: E_ERROR, E_PARSE, E_CORE_ERROR, E_CORE_WARNING, E_COMPILE_ERROR, E_COMPILE_WARNING, and most E_STRICT

error_handler

handler ( int $errorLevel , string $errorMessage [, string $errfile [, int $errline [, array $errcontext ]]] )


errcontext, is an array pointing to the active symbol table when the error occurs. That is, errcontext will contain an array of all variables in the scope where the error was triggered. The user's error handler should not modify the error context.

set_exception_handler

Set a user-defined exception handling function

getMessage(), "n";}set_exception_handler('exception_handler ');throw new Exception('Uncaught Exception');echo "Not Executedn";?>


register_shutdown_function

This function is a function that runs after the script ends (whether it ends normally or ends by exit or error) )

Error configuration in php.ini

Summary of PHP error mechanism

error_reporting = E_ALL // Report error level, what level error_log = /tmp/php_errors.log // Log location of error display in php display_errors = On // Whether to display errors on the output, this output may be a page, It may also be stdoutdisplay_startup_errors = On // Whether to display the error information of the startup process on the page. Remember that there are several Core type errors mentioned above that occur during startup. This is to control whether these errors are displayed on the page. log_errors = On // Whether to record error logs log_errors_max_len = 1024 // Maximum length of error log ignore_repeated_errors = Off // Whether to ignore repeated errors track_errors = Off // Whether to use the global variable $php_errormsg to record the last error xmlrpc_errors = 0 / /Whether to use the XML-RPC error message format to record errors xmlrpc_error_number = 0 // Used as the value of the XML-RPC faultCode element. html_errors = On // Whether to turn the functions and other information in the output into HTML links docref_root = http://manual/en/ // If html_errors is turned on, what is the root path of this link fastcgi.logging = 0 // Whether to turn PHP errors are thrown into fastcgi

PHP defaults to the log and standard output (if it is fpm mode, the standard output is the page)
The parameter of error_reporting is the error level. Indicates what level should trigger an error
display_errors controls whether error information should be displayed on the standard output
log_errors controls whether error information should be recorded in the log
error_log is the location where the error log is displayed

<br/>


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP中的错误处理机制是什么?PHP中的错误处理机制是什么?May 12, 2023 pm 07:31 PM

PHP是一种流行而强大的服务器端编程语言,可以用来开发各种Web应用程序。就像其他编程语言一样,PHP也有可能会出现错误和异常。这些错误和异常可能由各种原因引起,如程序错误、服务器错误、用户输入错误等等。为了确保程序的运行稳定性和可靠性,PHP提供了一套完整的错误处理机制。PHP错误处理机制的基本思想是:当发生错误时,程序会停止执行并输出一条错误消息。我们可

如何处理 PHP 中的语法错误如何处理 PHP 中的语法错误Aug 07, 2023 pm 04:46 PM

如何处理PHP中的语法错误引言:在开发PHP程序时,经常会遇到语法错误的情况。语法错误是由于代码违反了PHP语法规则所引起的,它会导致脚本无法正确执行。本文将介绍一些处理PHP语法错误的方法,并提供相应的代码示例。使用错误提示功能PHP提供了丰富的错误提示功能,在开发过程中可以打开这些提示,以便及时发现和解决语法错误。可以通过设置erro

PHP文件操作错误的处理方法及生成相应报错信息PHP文件操作错误的处理方法及生成相应报错信息Aug 08, 2023 am 10:30 AM

PHP文件操作错误的处理方法及生成相应报错信息在使用PHP进行文件操作时,可能会遇到各种错误,如找不到文件、权限错误等。这些错误可能会导致程序无法正常运行,因此合理处理文件操作错误是非常重要的。本文将介绍PHP文件操作错误的处理方法,并展示如何生成相应的报错信息。一、错误处理方法使用错误控制运算符PHP提供了错误控制运算符“@”,可以在执行可能出错的语句前添

如何处理PHP文件路径错误并生成对应的报错信息如何处理PHP文件路径错误并生成对应的报错信息Aug 06, 2023 am 10:12 AM

如何处理PHP文件路径错误并生成对应的报错信息在开发和维护PHP应用程序时,经常会遇到文件路径错误的情况。当引用一个不存在的文件或者指定了错误的路径时,在PHP中会抛出一个致命错误,导致应用程序无法正常运行。为了更好地调试和处理这种情况,我们可以通过以下方式来处理PHP文件路径错误,并生成对应的报错信息。使用绝对路径在引用文件时,尽量使用绝对路径而不是相对路

如何进行PHP后端功能开发的错误处理?如何进行PHP后端功能开发的错误处理?Aug 04, 2023 pm 01:19 PM

如何进行PHP后端功能开发的错误处理?作为一名PHP后端开发人员,在开发过程中,我们经常会遇到各种错误。良好的错误处理是保证系统稳定性和用户体验的重要因素。在本文中,我将分享一些如何进行PHP后端功能开发的错误处理的方法和技巧,并提供相应的代码示例。设置错误报告级别PHP提供了一个错误报告级别参数,可以通过设置来定义要报告的错误类型。使用error_repo

解决PHP报错:调用未定义的类方法解决PHP报错:调用未定义的类方法Aug 18, 2023 pm 05:09 PM

解决PHP报错:调用未定义的类方法在进行PHP开发过程中,经常会遇到调用未定义的类方法的报错。这种情况一般是由于代码编写不规范或者使用的类方法不存在而导致的。下面我们将介绍一些解决该问题的常见方法。检查类方法是否存在当报错提示调用未定义的类方法时,首先要检查该方法是否存在于对应的类中。通过使用method_exists()函数可以检查某个类是否存在某个方法。

PHP 错误处理:最佳实践和建议PHP 错误处理:最佳实践和建议Aug 07, 2023 pm 12:25 PM

PHP错误处理:最佳实践和建议在编写PHP代码时,错误处理是一项非常重要的任务。如果不正确地处理错误,就会导致应用程序中的漏洞和安全问题。同时,良好的错误处理还有助于提高代码的可维护性和可扩展性。本文将介绍一些PHP错误处理的最佳实践和建议,并提供一些代码示例。使用异常处理在PHP中,异常是一种用于处理运行时错误的机制。通过使用异常,可以将错误

处理PHP源代码中index报错的方法处理PHP源代码中index报错的方法Mar 11, 2024 am 08:39 AM

处理PHP源代码中index报错的方法在PHP开发过程中,经常会遇到"indexundefined"的报错。这种报错通常是由于尝试访问数组或对象中不存在的索引而引起的。解决这种问题的方法有很多种,以下将结合具体的代码示例来展示几种处理的方法。方法一:使用isset()函数isset()函数用于检查变量是否已经被声明以及是否有值。通过使用isset()函数,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools