PHP restore_exception_handler() Function
Complete PHP Error Reference
Definition and Usage
The restore_exception_handler() function restores the previous exception handler.
This function is used to restore the previous exception handler after changing
it with the set_exception_handler() function.
This function always returns TRUE.
Syntax
|
restore_exception_handler()
|
Tips and Notes
Tip: The previous exception handler could be the built in exception handler or
a user-defined function.
Example
<?php
restore_exception_handler();
throw new Exception('Uncaught Exception occured');
?>
|
The output of the code above should be something like this:
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
|
Complete PHP Error Reference

The Altova MissionKit is an integrated suite of tools ideal for:
- XML development
- Web & Web services development
- Data mapping & integration
- Rendering & publishing XML & database data
- XBRL validation, taxonomy editing, transformation & rendering
The MissionKit for XML Developers includes XMLSpy® - the industry-leading XML editor; MapForce® - a
graphical data mapping, conversion, and integration tool; StyleVision® - a visual XSLT stylesheet designer;
DiffDog® - an XML-aware diff/merge tool; and 2 additional tools.
Try all 6 products free for 30 days!
Download a fully-functional free trial
|
|
|
|