当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP restore_exception_handler()用法及代码示例


restore_exception_handler() 函数恢复之前的异常处理程序。它在使用 set_exception_handler() 更改异常处理程序函数后使用,以恢复到先前的异常处理程序(可以是 内置 或用户定义的函数)。

用法

restore_exception_handler()

参数

  • NA

返回

restore_exception_handler() 函数始终返回 TRUE。

示例

以下是一个例子 -

<?php
   function customException1($exception) {
      echo "[" . __FUNCTION__ . "]" . $exception->getMessage();
   }
   function customException2($exception) {
      echo "[" . __FUNCTION__ . "]" . $exception->getMessage();
   }
   function customException3($exception) {
      echo "[" . __FUNCTION__ . "]" . $exception->getMessage();
   }
   set_exception_handler("customException1");
   set_exception_handler("customException2");
   set_exception_handler("customException3");
   restore_exception_handler();
   // throwing exception
   throw new Exception("Triggers the first exception handler!");
?>

输出

以下是输出 -

[customException1] Triggers the first exception handler!

相关用法


注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 restore_exception_handler() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。