Home Backend Development PHP Tutorial Five minutes to show you what exception handling is in PHP

Five minutes to show you what exception handling is in PHP

Oct 20, 2021 pm 05:26 PM
php Exception handling

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 为一个异常类的对象
    // 输出错误信息
}
Copy after login

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;;
?>
Copy after login

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{
}
?>
Copy after login

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);
     }
}
Copy after login

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;;
}
Copy after login

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 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

Video Face Swap

Video Face Swap

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

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)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How do you handle exceptions effectively in PHP (try, catch, finally, throw)? How do you handle exceptions effectively in PHP (try, catch, finally, throw)? Apr 05, 2025 am 12:03 AM

In PHP, exception handling is achieved through the try, catch, finally, and throw keywords. 1) The try block surrounds the code that may throw exceptions; 2) The catch block handles exceptions; 3) Finally block ensures that the code is always executed; 4) throw is used to manually throw exceptions. These mechanisms help improve the robustness and maintainability of your code.

See all articles