search
HomeBackend DevelopmentPHP TutorialFive minutes to show you what exception handling is in PHP

In the previous article, I brought you "You must understand how to add image watermarks in PHP", which gave you a detailed introduction to how to add watermarks in PHP through examples. This article In this article, we will continue to look at the relevant knowledge of error handling in PHP. I hope it can help everyone!

Five minutes to show you what exception handling is in PHP

Error and exception handling in PHP are very commonly used in PHP. In our daily development, we will definitely encounter, for example, forgetting to add a semicolon. , function names are written incorrectly or functions are redefined, etc. There are many errors. If errors can be found during the development process, it will definitely be very beneficial to our development.

Therefore, rational use of a process when developing a project will help us find and correct errors to speed up development. Then let's take a look at how to understand our error handling. You can also learn through the free "php Error Handling" teaching video.

Exception handling class in PHP

In PHP, there is a built-in exception handling class, which is Exception, this class contains some exception handling functions, which can capture program exceptions and errors.

The following are the more commonly used functions in this class:

  • getTraceAsString(): Returns the function that has been formatted into a string. Information generated by the getTrace() function

  • __toString(): String information that generates exceptions, it can be overloaded. Note that the front of this function is two underscores

  • getMessage(): Returns the abnormal message content

  • getLine(): Returns the code line number where the error occurred

  • getCode(): Returns the exception code in numeric form

  • getFile(): Returns the file name where the exception occurred

  • getTrace(): Returns the backtrace() array

Capture exceptions in the program

Exceptions in the program generally do not show themselves. At this time we can The purpose of catching exceptions in the program is achieved through the try catch statement and the throw keyword.

The try catch statement is similar to the flow control statement. The throw keyword can throw an exception. We can capture the exception in the program through a structure similar to conditional selection. The syntax format of the try catch statement is as follows:

try{
    // 可能出现异常或错误的代码,比如文件操作、数据库操作等
}catch(Exception $a){    // $a 为一个异常类的对象
    // 输出错误信息
}

When we need to catch program exceptions, we need to put the code that needs to be caught into the try code block. In the above syntax, each try should have at least one and The corresponding catch. When the try code block does not catch a matching exception, the code will jump to the last catch and continue.

Exceptions generated in it can be thrown out by the throw statement and captured by catch. When an exception occurs, the code behind it will no longer continue to execute.

The example is as follows:

<?php
    try{
        $err = &#39;抛出异常信息,并跳出 try 语句块&#39;;
        if(is_dir(&#39;./demo&#39;)){
            echo &#39;这里是一些可能会发生异常的代码&#39;;
        }else{
            throw new Exception($err, 20211020);   // 抛出异常
        }
        echo &#39;上面抛出异常的话,这行代码将不会执行,转而执行 catch 中的代码。<br>&#39;;
    }catch(Exception $e){
        echo &#39;捕获异常:&#39;.$e->getMessage().&#39;<br>错误代码:&#39;.$e->getCode().&#39;<br>&#39;;
    }
    echo &#39;继续执行 try catch 语句之外的代码&#39;;
?>

Output result:

Five minutes to show you what exception handling is in PHP

In the above example, try to judge through the try statement Is there a directory named demo in the current directory? The directory does not exist, so the throw keyword is executed and an exception is thrown. After the exception is found and thrown, the remaining statements of the try statement will not be executed.

Create your own exception class

You can define some exceptions in advance in PHP, because PHP rarely takes the initiative Throw exceptions. When exceptions are defined in advance, we can use if-else to judge possible exceptions and throw exceptions manually. In PHP, we can often use the exception classes we create ourselves.

Examples are as follows:

<?php
class emailException extends Exception{
    function __toString(){
        return "<b>email is null</b>file:".$this->getFile().&#39;,line:&#39;. $this->getLine();
    }
}
class nameException extends Exception{
}
?>

In the above example, two exception classes are defined, both of which inherit from the Exception base class.

In actual business, we will also throw different exceptions according to different needs. Examples are as follows:

function reg($reg) {
    if (empty($reg[&#39;email&#39;])) {
        throw new emailException("emaill is null", 1);
    }
    if(empty($reg[&#39;name&#39;])) {
        throw new nameException("name is null", 2);
     }
}

When executing business code, you can use the if statement to determine whether the exception will occur. Where it occurs, then manually throw the exception, and distribute different exceptions to different exception classes through statements; in the following example, different exceptions are captured according to different situations. When the first catch catches the exception, Even if other exceptions still exist in the program, other catch code blocks will be skipped. Regardless of whether there is an exception in the program, the statements in the finally finally will be executed. An example is as follows:

try{
    $reg = array(&#39;phone&#39;=>&#39;1888888888&#39;);
    reg($reg);
} catch(emailException $e) {
    echo $e;
} catch(nameException $e) {
    echo &#39;error msg:&#39; .$e->getMessage().&#39;error code:&#39;.$e->getCode();
} finally {
    echo &#39; finally&#39;;
}

If you want to know more about PHP, you can click on "PHP Video Tutorial" to learn!

The above is the detailed content of Five minutes to show you what exception handling is in PHP. For more information, please follow other related articles on the PHP Chinese website!

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
Explain the concept of a PHP session in simple terms.Explain the concept of a PHP session in simple terms.Apr 26, 2025 am 12:09 AM

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

How do you loop through all the values stored in a PHP session?How do you loop through all the values stored in a PHP session?Apr 26, 2025 am 12:06 AM

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

Explain how to use sessions for user authentication.Explain how to use sessions for user authentication.Apr 26, 2025 am 12:04 AM

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.

Give an example of how to store a user's name in a PHP session.Give an example of how to store a user's name in a PHP session.Apr 26, 2025 am 12:03 AM

Tostoreauser'snameinaPHPsession,startthesessionwithsession_start(),thenassignthenameto$_SESSION['username'].1)Usesession_start()toinitializethesession.2)Assigntheuser'snameto$_SESSION['username'].Thisallowsyoutoaccessthenameacrossmultiplepages,enhanc

What are some common problems that can cause PHP sessions to fail?What are some common problems that can cause PHP sessions to fail?Apr 25, 2025 am 12:16 AM

Reasons for PHPSession failure include configuration errors, cookie issues, and session expiration. 1. Configuration error: Check and set the correct session.save_path. 2.Cookie problem: Make sure the cookie is set correctly. 3.Session expires: Adjust session.gc_maxlifetime value to extend session time.

How do you debug session-related issues in PHP?How do you debug session-related issues in PHP?Apr 25, 2025 am 12:12 AM

Methods to debug session problems in PHP include: 1. Check whether the session is started correctly; 2. Verify the delivery of the session ID; 3. Check the storage and reading of session data; 4. Check the server configuration. By outputting session ID and data, viewing session file content, etc., you can effectively diagnose and solve session-related problems.

What happens if session_start() is called multiple times?What happens if session_start() is called multiple times?Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

How do you configure the session lifetime in PHP?How do you configure the session lifetime in PHP?Apr 25, 2025 am 12:05 AM

Configuring the session lifecycle in PHP can be achieved by setting session.gc_maxlifetime and session.cookie_lifetime. 1) session.gc_maxlifetime controls the survival time of server-side session data, 2) session.cookie_lifetime controls the life cycle of client cookies. When set to 0, the cookie expires when the browser is closed.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools