Home 类库下载 PHP类库 php error handling

php error handling

Oct 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/>
Copy after login


Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the error handling mechanism in PHP? What is the error handling mechanism in PHP? May 12, 2023 pm 07:31 PM

PHP is a popular and powerful server-side programming language that can be used to develop various web applications. Just like other programming languages, PHP is prone to errors and exceptions. These errors and exceptions may be caused by various reasons, such as program errors, server errors, user input errors, etc. In order to ensure the running stability and reliability of the program, PHP provides a complete set of error handling mechanisms. The basic idea of ​​PHP error handling mechanism is: when an error occurs, the program will stop execution and output an error message. we can

How to handle syntax errors in PHP How to handle syntax errors in PHP Aug 07, 2023 pm 04:46 PM

How to deal with syntax errors in PHP Introduction: When developing PHP programs, you often encounter syntax errors. Syntax errors are caused by code that violates PHP syntax rules, which causes the script to fail to execute correctly. This article will introduce some ways to deal with PHP syntax errors and provide corresponding code examples. Using the error prompt function PHP provides a rich error prompt function. These prompts can be turned on during the development process to discover and solve syntax errors in a timely manner. You can set error by

How to handle PHP file operation errors and generate corresponding error messages How to handle PHP file operation errors and generate corresponding error messages Aug 08, 2023 am 10:30 AM

How to handle PHP file operation errors and generate corresponding error messages. When using PHP to perform file operations, you may encounter various errors, such as file not found, permission errors, etc. These errors may cause the program to fail to run properly, so it is very important to handle file operation errors appropriately. This article will introduce how to handle PHP file operation errors and show how to generate corresponding error messages. 1. Error handling method uses error control operator PHP provides the error control operator "@", which can be added before executing statements that may cause errors.

How to handle PHP file path errors and generate corresponding error messages How to handle PHP file path errors and generate corresponding error messages Aug 06, 2023 am 10:12 AM

How to handle PHP file path errors and generate corresponding error messages. When developing and maintaining PHP applications, file path errors are often encountered. When a file that does not exist is referenced or an incorrect path is specified, a fatal error is thrown in PHP, causing the application to fail to run properly. In order to better debug and handle this situation, we can handle PHP file path errors in the following ways and generate corresponding error messages. Use absolute paths When referencing files, try to use absolute paths instead of relative paths.

How to handle errors in PHP backend function development? How to handle errors in PHP backend function development? Aug 04, 2023 pm 01:19 PM

How to handle errors in PHP backend function development? As a PHP backend developer, we often encounter various errors during the development process. Good error handling is an important factor in ensuring system stability and user experience. In this article, I will share some error handling methods and techniques on how to develop PHP back-end functions, and provide corresponding code examples. Setting the error reporting level PHP provides an error reporting level parameter that can be set to define the types of errors to be reported. Use error_repo

Solve PHP error: calling undefined class method Solve PHP error: calling undefined class method Aug 18, 2023 pm 05:09 PM

Solving PHP errors: calling undefined class methods During the PHP development process, we often encounter errors calling undefined class methods. This situation is generally caused by irregular code writing or non-existent class methods. Below we'll cover some common ways to fix this problem. Check whether the class method exists. When an error message prompts that an undefined class method is called, first check whether the method exists in the corresponding class. You can check whether a method exists in a class by using the method_exists() function.

PHP Error Handling: Best Practices and Recommendations PHP Error Handling: Best Practices and Recommendations Aug 07, 2023 pm 12:25 PM

PHP Error Handling: Best Practices and Recommendations Error handling is a very important task when writing PHP code. If errors are not handled correctly, it can lead to vulnerabilities and security issues in your application. At the same time, good error handling also helps improve the maintainability and scalability of the code. This article will introduce some best practices and recommendations for PHP error handling and provide some code examples. Using Exception Handling In PHP, exceptions are a mechanism used to handle runtime errors. By using exceptions, errors can be

How to handle index errors in PHP source code How to handle index errors in PHP source code Mar 11, 2024 am 08:39 AM

How to handle index errors in PHP source code During the PHP development process, you often encounter "indexundefined" errors. This error is usually caused by trying to access a non-existent index in the array or object. There are many ways to solve this problem. The following will show several methods with specific code examples. Method 1: Use the isset() function The isset() function is used to check whether the variable has been declared and whether it has a value. By using the isset() function,

See all articles