Table of Contents
PHP 7 error exception level
Throwable
Error
TypeError (type error)
ParseError (parse error)
ArithmeticError (arithmetic error)
pisionByZeroError (denominator is zero)
AssertionError (Assertion)
使用 Error
编写兼容 PHP 5.x 和 7 Exceptions 类的代码
Home Backend Development PHP Tutorial PHP 7 error exception level

PHP 7 error exception level

Apr 16, 2018 am 11:12 AM
php abnormal level

This article introduces the content of PHP7 error exception level, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

PHP 7 error exception level


Exploring the Exception Hierarchy of PHP 7

In the past, it was almost impossible to handle fatal errors in PHP. Fatal errors simply terminate script execution without calling the set_error_hander() error handler.

In PHP 7, when fatal or recoverable errors (E_ERROR and E_RECOVERABLE_ERROR) occur, the exception will be caught instead of aborting the script. Under certain circumstances, there are still fatal errors, such as insufficient memory, and the script will be terminated immediately as before. Uncaught exceptions are still fatal errors in PHP 7. This means that an uncaught exception in PHP 5.x is still a fatal error in PHP 7.

Note that errors such as warnings or notifications remain unchanged in PHP 7, only fatal errors or recoverable errors will throw exceptions.

Throwing of fatal or recoverable errors does not extend from the Exception class. This separation is to prevent existing PHP 5.x code from calling the terminate routine if it receives an error exception. Exceptions thrown by fatal or recoverable errors will instantiate a new exception class: Error. Like other exception classes, the caught Error class will be processed after the last program block is executed.

Compared with PHP 7 alpha-2, the exception class hierarchy of PHP 7 is different. The thrown fatal and recoverable errors will be instantiated in the EngineException class, and the EnginException class Does not inherit from Exception. Both Exception and EngineException inherit from BaseException.

Throwable

In order to combine these two exception branches, both Exception and Error implement a new interface, Throwable.

The new exception hierarchy in PHP 7 is as follows:

1

2

3

4

5

6

7

8

9

Throwable //(接口)

    |- Exception implements Throwable

        |- ...

    |- Error implements Throwable

        |- TypeError extends Error

        |- ParseError extends Error // 编译时错误

        |- ArithmeticError extends Error

            |- pisionByZeroError extends ArithmeticError

        |- AssertionError extends Error

Copy after login

If you define the Throwable interface in PHP 7, it should be similar to the following code.

1

2

3

4

5

6

7

8

9

interface Throwable{

    public function getMessage(): string;

    public function getCode(): int;

    public function getFile(): string;

    public function getLine(): int;

    public function getTrace(): array;

    public function getTraceAsString(): string;

    public function getPrevious(): Throwable;

    public function __toString(): string;}

Copy after login

This interface should be familiar. Throwable-specific methods are the same as Exception's. The only difference is that Throwable::getPrevious() will return a Throwable Exception and the constructor of the Error class will receive an instance of Throwable as the previous exception.

Throwable can be used to catch exceptions or error objects in try/catch blocks (more exception types may be caught in the future). Remember, it is recommended here to capture more specific exception classes and take appropriate handling measures. However, in some cases, it is necessary to catch exceptions broadly (such as logging or the framework's error handling). In PHP 7, these exception catching blocks are more suitable to use Throwable instead of Exception.

1

try {    // Code that may throw an Exception or Error.} catch (Throwable $t) {    // Handle exception}

Copy after login

Custom classes cannot implement Throwable plug-ins, partly due to predictability and consistency: only instantiating the Excetion and Error classes can throw exceptions. In addition, the exception carries information about the object that was created on the stack. Custom classes do not automatically have parameters that hold information.

Throwable can be extended to create package-specific interfaces or add additional methods. Only classes that inherit Exception or Error can implement plug-ins that extend Throwable.

1

interface MyPackageThrowable extends Throwable {}class MyPackageException extends Exception implements MyPackageThrowable {}throw new MyPackageException();

Copy after login

Error

In PHP 5.0, all errors are fatal errors or recoverable fatal errors, while in PHP 7, all errors are thrown. Like other exceptions, Error objects can be caught through try/catch blocks.

1

2

$var = 1;try {

    $var->method(); // Throws an Error object in PHP 7.} catch (Error $e) {    // Handle error}

Copy after login

Usually, previous fatal errors will throw an instantiation of the Error base class, but some errors will throw more specific Error subclasses: TypeError, ParseError, and AssertionError.

TypeError (type error)

TypeError instantiation is thrown by the actual parameters and formal parameters. When the function is called, the formal parameters and actual parameter types declared when calling the function are inconsistent (incoming parameters and methods) The defined parameter types are inconsistent) will throw a TypeError instance.

1

2

3

4

5

function add(int $left, int $right){

    return $left + $right;

}try {    $value = add('left', 'right');

} catch (TypeError $e) {    echo $e->getMessage(), "\n";

}

Copy after login

Resulted output:

1

Argument 1 passed to add() must be of the type integer, string given

Copy after login

ParseError (parse error)

included/required file, or when the code in eval() contains a syntax error, ParseError will be Throw.

1

2

3

try {    require 'file-with-parse-error.php';

} catch (ParseError $e) {    echo $e->getMessage(), "\n";

}

Copy after login

ArithmeticError (arithmetic error)

There are two situations where ArithmeticError is thrown: negative displacement, or using PHP_INT_MIN as the numerator and -1 as the denominator to call intp() (PHP_INI_MIN / -1 The return value is a floating point type).

1

2

3

try {    $value = 1 << -1;

} catch (ArithmeticError $e) {    echo $e->getMessage(), "\n";

}

Copy after login

pisionByZeroError (denominator is zero)

Using intp() or remainder (%) when the denominator is zero will throw a pisionByZeroError error. Note that division by zero only causes a warning and evaluates to NaN.

1

2

3

try {    $value = 1 % 0;

} catch (pisionByZeroError $e) {    echo $e->getMessage(), "\n";

}

Copy after login

AssertionError (Assertion)

When the conditions set by assert() are not met, an AssertionError error will be thrown.

1

2

3

4

ini_set(&#39;zend.assertions&#39;, 1);

ini_set(&#39;assert.exception&#39;, 1);$test = 1;

 

assert($test === 0);

Copy after login

The conditions set by assert() are not met, an AssertionError is thrown, and assert.exception = 1, the exception output is as follows:

1

Fatal error: Uncaught AssertionError: assert($test === 0)

Copy after login

assert() is only executed and will only throw an AssertionError if assertions are enabled and set to throw exceptions with ini settings zend.assertions = 1 and assert.exception = 1.

使用 Error

用户可以创建自己的 Error 类,作为 Error 基类的拓展。这可能带来重要的问题:什么场合下应该抛出一个 Exception 类的子类实例,什么场合下又应该抛出 Error 类的子类实例?

由于错误对象不应当在程序运行中处理,捕获错误对象应当是少见的。通常而言,错误对象应当捕获并记录之,执行必要的清理,并给用户展示错误信息。

编写兼容 PHP 5.x 和 7 Exceptions 类的代码

在 PHP 5.x 和 7 使用相同的代码捕获异常,可以实用多重捕获代码块,首先捕获 Throwable,之后时 Exception。一旦不需要维护 PHP 5.x 的系统,代码块可以立刻被清理掉。

1

try {    // Code that may throw an Exception or Error.} catch (Throwable $t) {    // Executed only in PHP 7, will not match in PHP 5.x} catch (Exception $e) {    // Executed only in PHP 5.x, will not be reached in PHP 7}

Copy after login

英文原文: trowski.com/2015

本文虽拙,却也系作者劳动,转载还请保留本文链接: http://cyleft.com/?p=721

相关推荐:

php错误级别详解

PHP错误与异常调试视频教程资源分享

The above is the detailed content of PHP 7 error exception level. 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

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles