restore_exception_handler 恢复之前定义过的异常处理函数。
发表日期:2021-07-01 08:54:56 | 来源: | | 浏览(958) 分类:错误处理 函数
restore_exception_handler
(PHP 5, PHP 7, PHP 8)
restore_exception_handler — 恢复之前定义过的异常处理函数。
说明
restore_exception_handler(): bool
在使用 set_exception_handler() 改变异常处理函数之后,此函数可以 用于还原之前的异常处理程序(可以是内置的或者也可以是用户所定义的函数)。
返回值
该函数总是返回 true
。
范例
示例 #1 restore_exception_handler() 范例
<?php function exception_handler_1(Exception $e) { echo '[' . __FUNCTION__ . '] ' . $e->getMessage(); } function exception_handler_2(Exception $e) { echo '[' . __FUNCTION__ . '] ' . $e->getMessage(); } set_exception_handler('exception_handler_1'); set_exception_handler('exception_handler_2'); restore_exception_handler(); throw new Exception('This triggers the first exception handler...'); ?>
以上例程会输出:
[exception_handler_1] This triggers the first exception handler...
参见
- set_exception_handler() - 设置用户自定义的异常处理函数
- set_error_handler() - 设置用户自定义的错误处理函数
- restore_error_handler() - 还原之前的错误处理函数
- error_reporting() - 设置应该报告何种 PHP 错误
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- 预定义常量(0)
- debug_backtrace 产生一条回溯跟踪(backtrace)(0)
- debug_print_backtrace 打印一条回溯。(0)
- error_clear_last 清除最近一次错误(0)
- error_get_last 获取最后发生的错误(0)
- error_log 发送错误信息到某个地方(0)
- error_reporting 设置应该报告何种 PHP 错误(0)
- restore_error_handler 还原之前的错误处理函数(0)
- restore_exception_handler 恢复之前定义过的异常处理函数。(0)
- set_error_handler 设置用户自定义的错误处理函数(0)
- set_exception_handler 设置用户自定义的异常处理函数(0)
- trigger_error 产生一个用户级别的 error/warning/notice 信息(0)
- user_error trigger_error() 的别名(0)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)