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
Want To Be A Web Master?
If you want to be a Web Master, you will have to host your web site with an ISP (Internet Service Provider).
MaximumASP offers seven different configurations of dedicated servers to meet your Windows and .NET hosting needs.
Hosted on our multi-tiered Enterprise Class network, these servers provide the performance, security and reliability
you need to host your high end web sites and applications.
Visit MaximumASP
|