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
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
Request an INSTANT DEMO or download a FREE TRIAL today. |
|
|
|