search
HomeBackend DevelopmentPHP TutorialPHP common function blocks_error and exception handling - php (32)

1. Error and exception handling

1.1 Error types and basic debugging methods
??Errors in PHP programs generally fall into the following three areas:

??Syntax errors:
??Syntax errors are the most common and easy to fix. For example: a semicolon is missing in the code. Such errors prevent the script from executing.

??Runtime error:
??This kind of error generally does not prevent the execution of the PHP script, but it will prevent what is currently being done. An error is output, but the php script continues to execute

?? Logic error:
?? This kind of error is the most troublesome, as it neither prevents the script from executing nor outputs an error message.
??An exception is an exception or an event that occurs during the execution of a program, which interrupts the execution of normal instructions and jumps to other program modules to continue execution.

PHP’s error reporting level
??E_ALL //All message values: 6143
??E_ERROR //Fatal runtime error value: 1
??E_RECOVERABLE_ERROR //Near-fatal run Time error, if not caught, it will be treated as E_ERROR Value: 4096
??E_WARNING //Runtime warning (non-fatal error) Value: 2
??E_PARSE //Compile time parsing error value: 4
??E_NOTICE //Runtime reminder (often a bug, may also be intentional) Value: 8
??E_STRICT //Coding standardization warning (recommended how to modify for forward compatibility) Value: 2048
??E_CORE_ERROR //Fatal error value during PHP startup initialization process: 16
??E_CORE_WARNING //Warning (non-fatal error) value during PHP startup initialization process: 32
??E_COMPILE_ERROR // Compile-time fatal error value: 64
??E_COMPILE_WARNING //Compile-time warning (non-fatal error) value: 128
??E_USER_ERROR //User-defined fatal error value: 256
?? E_USER_WARNING //User-defined warning (non-fatal error) Value: 512
??E_USER_NOTICE //User-defined reminder (often bug) Value: 1024

php.ini configuration file

display_errors: Whether to enable the function of PHP output error report
?? Values ​​are: On (default output error report), Off (mask all error messages)
?? The ini_set() function can be called in the PHP script, Dynamically set the php.ini configuration file.
??For example: ini_set("display_errors","On"); //Display all error information
??error_reporting: Set different error reporting levels.
??error_reporting= E_ALL & ~E_NOTICE
--can throw any non-noticeable error, default value
??error_reporting= E_ERROR | E_PARSE | E_CORE_ERROR
--only fatal runtimes are considered errors, new parsing errors, and core errors.
??error_reporting= E_ALL & ~(E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE)
--Report all errors except user-caused errors.
??The error reporting level can be dynamically set through the error_reporting() function in PHP scripts. Such as: error_reporting(E_ALL);]

Set error level example: error.php

<span><h2 id="测试错误报告">测试错误报告</h2>
<span>php
</span><span>/*</span><span>开启php.ini中的display_errors指令,只有该指令开启如有错误报告才能输出</span><span>*/</span><span>ini_set(</span><span>'</span><span>display_errors</span><span>'</span>,<span>1</span><span>);
</span><span>/*</span><span>通过error_reporting()函数设置在本脚本中,输出所有级别的错误报告</span><span>*/</span><span>error_reporting(E_ALL);
</span><span>/*</span><span>“注意(notice)”的报告,不会阻止脚本的执行,并且不一定是一个问题</span><span>*/</span><span>getType($</span><span>var</span>);<span>//</span><span>调用函数时提供的参数变量没有在之前声明</span><span>/*</span><span>“警告(warning)”的报告,指示一个问题,但是不会阻止脚本的执行</span><span>*/</span><span>getType();</span><span>//</span><span>调用函数时没有提供必要的参数</span><span>/*</span><span>“错误(error)”的报告,它会终止程序,脚本不会再向下执行</span><span>*/</span><span>get_Type();</span><span>//</span><span>调用一个没有被定义的函数</span>?></span>

Configuration instructions for PHP error reporting behavior

display_startup_errors= Off
??Whether to display the PHP engine Error encountered during initialization.
??log_errors= On
??Determines the location of log statement recording.
??error_log (default null)
??Specify the file where errors are written or record the error log in the system log syslog.
??Log_errors_max_len=1024
??The maximum length of each log entry, in bytes. 0 means maximum.

1.2 Error log

Two ways to record error logs:
??Use the specified file to record the error report log
??The error log is recorded in the operating system log

Use The specified file records the error report log

1. First configure php.ini:
??error_reporting= E_ALL//Every error will be sent to PHP
??display_errors=Off//Do not display error reports
??log_errors=On//Determine the location of log statement recording.
??log_errors_max_log=1024//The maximum length of each log item
??error_log=G:/myerror.log//Specify the file where errors are written
??2. Use function: in php Use error_log() in the file to record the log, and you can write the information to the myerror.log file
??For example: error_log("Login failed!");

2. Use four functions to Logging:
??define_syslog_variables();//Initialize configuration for system log
??openlog();//Open a log link
??syslog();//Send a log

Example

<span><span>php
</span><span>if</span>(!<span>Ora_Logon($username, $password)){
error_log(</span><span>"</span><span>Oracle数据库不可用!</span><span>"</span>, <span>0</span><span>);
</span><span>//</span><span>将错误消息写入到操作系统日志中</span><span>}
</span><span>if</span>(!($foo=<span>allocate_new_foo()){
error_log(</span><span>"</span><span>出现大麻烦了!</span><span>"</span>, <span>1</span>, <span>"</span><span>webmaster@www.mydomain.com</span><span>"</span>); <span>//</span><span>发送到管理员邮箱中</span><span>}
error_log(</span><span>"</span><span>搞砸了!</span><span>"</span>,<span>2</span>, <span>"</span><span>localhost:5000</span><span>"</span><span>);
</span><span>//</span><span>发送到本机对应5000端口的服务器中</span>error_log(<span>"</span><span>搞砸了!</span><span>"</span>, <span>3</span>, <span>"</span><span>/usr/local/errors.log</span><span>"</span><span>);
</span><span>//</span><span>发送到指定的文件中</span>?></span>

<span><span>php
define_syslog_variables();
openlog(</span><span>"</span><span>PHP5</span><span>"</span><span>, LOG_PID , LOG_USER);
syslog(LOG_WARNING, </span><span>"</span><span>警告报告向syslog中发送的演示,警告时间:</span><span>"</span>.date(<span>"</span><span>Y/m/dH:i:s</span><span>"</span><span>));
closelog();
</span>?></span>

View the log: For example, in Windows system, you can see the log by right-clicking "My Computer"-> Select Management Options->Select Event Viewer in the System Tools Menu->In the Application Options

1.3 Exception Handling

Exception (Exception) handling is used to change the normal flow of the script when a specified error occurs. It is an important new feature in PHP5. Exception handling is an extensible, easy-to-maintain error handling unified mechanism, and provides a new object-oriented error handling method.
??Exception handling format:
try{
Use try to include code where exceptions may occur.
Once an exception occurs, try to capture the exception and hand it over to catch for processing.
Throw exception statement: throw exception object.
}catch (exception object parameter) {
Exception handling is done here.
}[catch(.,,){
.. .. ..
}]

The above introduces the common function blocks of PHP_Error and Exception Handling - php (32), including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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 Fatal error: Call to undefined method PDO::prepare() in的解决方法PHP Fatal error: Call to undefined method PDO::prepare() in的解决方法Jun 22, 2023 pm 06:40 PM

PHP作为一种流行的Web开发语言,已经被使用了很长时间。PHP中集成的PDO(PHP数据对象)类是我们在开发Web应用程序过程中与数据库进行交互的一种常用方法。但是,一些PHP开发者经常遇到的问题是,当使用PDO类与数据库进行交互时,他们会收到这样的错误:PHPFatalerror:CalltoundefinedmethodPDO::prep

解决C++代码中出现的“error: incomplete type is not allowed”问题解决C++代码中出现的“error: incomplete type is not allowed”问题Aug 26, 2023 pm 08:54 PM

解决C++代码中出现的“error:incompletetypeisnotallowed”问题在C++的编程过程中,有时候会遇到一些编译错误,其中一个常见的错误是“error:incompletetypeisnotallowed”。这个错误通常是由于在使用不完整的类型进行操作时引起的。本文将介绍这个错误的原因,并提供几种解决方法。首先,我

在Vue应用中使用axios时出现“Uncaught (in promise) Error: Request failed with status code 500”怎么办?在Vue应用中使用axios时出现“Uncaught (in promise) Error: Request failed with status code 500”怎么办?Jun 24, 2023 pm 05:33 PM

在Vue应用中使用axios是十分常见的,axios是一种基于Promise的HTTP客户端,可以用于浏览器和Node.js。在开发过程中,有时会出现“Uncaught(inpromise)Error:Requestfailedwithstatuscode500”的错误提示,对于开发者来说,这个错误提示可能有些难以理解和解决。本文将会探讨这

0271:real time clock error开不开机怎么办0271:real time clock error开不开机怎么办Mar 13, 2023 am 11:30 AM

“0271:real time clock error”开不开机的解决办法:1、按一下F1,在出现的界面中,将选项栏转到第三项“Date/Time”;2、将系统时间手动修改成现在的时间;3、按F10,在弹出的对话框中,选择yes;4、重新打开笔记本即可正常开机。

解决C++代码中出现的“error: expected initializer before 'datatype'”问题解决C++代码中出现的“error: expected initializer before 'datatype'”问题Aug 25, 2023 pm 01:24 PM

解决C++代码中出现的“error:expectedinitializerbefore'datatype'”问题在C++编程中,有时候我们在编写代码时会遇到一些编译错误,其中一种常见的错误是“error:expectedinitializerbefore'datatype'”。这个错误通常在变量声明或函数定义中发生,可能导致程序无法正确编译或

如何解决PHP Warning: fopen(): failed to open stream: No such file or directory如何解决PHP Warning: fopen(): failed to open stream: No such file or directoryAug 19, 2023 am 10:44 AM

如何解决PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory在使用PHP开发过程中,我们经常会遇到一些文件操作的问题,其中之一就是"PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory

PHP Fatal error: Call to undefined function mysqli_connect()的解决方法PHP Fatal error: Call to undefined function mysqli_connect()的解决方法Jun 23, 2023 am 09:40 AM

在使用PHP编写Web应用程序时,经常会使用MySQL数据库来存储数据。PHP提供了一种与MySQL数据库进行交互的方法,称为MySQLi。然而,有时在使用MySQLi时,会遇到一个错误信息,如以下所示:PHPFatalerror:Calltoundefinedfunctionmysqli_connect()这个错误信息意味着PHP无法找到my

PHP Fatal error: Call to a member function fetch()的解决方法PHP Fatal error: Call to a member function fetch()的解决方法Jun 23, 2023 am 09:36 AM

在使用PHP进行web应用开发时,很多时候会需要使用数据库。而在使用数据库时,错误提示是非常常见的事情。其中,PHPFatalerror:Calltoamemberfunctionfetch()是一种比较常见的错误,它会在使用PDO查询数据库时出现。那么,这个错误是怎么引起的,以及如何解决呢?本文将为大家详细阐述。一、错误产生原

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.