总有人间一两风,填我十万八千梦

PHP Throwable 用法 手册 | 示例代码

PHP开发手册 归档 413℃ 0评论

Throwable

(PHP 7, PHP 8)

简介

PHP 7 里,Throwable 是能被 throw 语句抛出的最基本的接口(interface),包含了 ErrorException

注意:

PHP 类无法直接实现 (implement) Throwable 接口,而应当去继承 Exception

接口摘要

Throwable {
/* 方法 */
abstract public getMessage(): string
abstract public getCode(): int
abstract public getFile(): string
abstract public getLine(): int
abstract public getTrace(): array
abstract public getTraceAsString(): string
abstract public getPrevious(): Throwable
abstract public __toString(): string

}

目录

用户贡献的笔记

mlocati at gmail dot com

I wrote a simple script that prints out the Throwable and Exception tree for every PHP version.

You can find this script here:
https://gist.github.com/mlocati/249f07b074a0de339d4d1ca980848e6a

And its output is here:
https://3v4l.org/sDMsv

thisbug at foxmail dot com

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
}

interface MyPackageThrowable extends Throwable {}

class MyPackageException extends Exception implements MyPackageThrowable {}

throw new MyPackageException();

转载请注明:悠然品鉴 » PHP Throwable 用法 手册 | 示例代码

喜欢 (0)or分享 (0)
发表我的评论
取消评论

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址