Customize PHP error reporting handling
Jul 29, 2016 am 09:03 AM我们 Let PHP prompt the error message
The function used by the error information
Set_error_handler ()
Set_error_handler (error_handler, error_types); Specifies the function to run when an error occurs.
error_types Optional. Specifies at which error reporting level user-defined errors are displayed. The default is "E_ALL".
Use the trigger_error() function to trigger an error message under user-specified conditions
People think of the trigger function in jquery
Function:
If an illegal error type is specified, this function returns false, otherwise it returns true.
Syntax:
error_message Required. Specifies the error message. Length limit is 1024 characters. error_types Optional. Specifies the error type of the error message. Possible values: E_USER_ERROR E_USER_WARNING E_USER_NOTICE
Example:
<?php header('Content-type:text/html;charset=utf8'); error_reporting(E_ALL); set_error_handler('set_error_message'); echo $a; /** * 发生错误运行的函数 * $errno 错误信息编码 * $errstr 错误信息 * $errfile 错误的文件 * $errline 错误的行数 */ function set_error_message($errno, $errstr, $errfile, $errline){ echo '错误信息编码为:'.$errno.'<br/>'; echo '错误信息为:'.$errstr.'<br>'; echo '错误文件为:'.$errfile.'<br>'; echo '错误行数为:'.$errline; die(); } ?>
The above introduces the custom PHP error report processing method, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Solution: Your organization requires you to change your PIN

How to adjust window border settings on Windows 11: Change color and size

How to enable or disable taskbar thumbnail previews on Windows 11

How to change title bar color on Windows 11?

OOBELANGUAGE Error Problems in Windows 11/10 Repair

10 Ways to Adjust Brightness on Windows 11

Solution to PHP Fatal error: Call to undefined method PDO::prepare() in
