PHP restore_exception_handler() 函数

返回上一级

PHP restore_exception_handler() 函数用于恢复之前的异常处理程序

该函数用于在通过 set_exception_handler() 函数改变后恢复之前的异常处理程序

函数原型

restore_exception_handler()

返回值

总是返回 TRUE

注意

之前的异常处理程序可能是在内建的异常处理程序或用户自定义函数中构建的

范例

<?php

restore_exception_handler();
throw new Exception('Uncaught Exception occured');

运行以上 PHP 范例,输出结果如下

Fatal error: Uncaught exception 'Exception' with message'Uncaught Exception occured' in C:\webfolder\test.php:4 
Stack trace: #0 {main} thrown in C:\webfolder\test.php on line 4

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.