|
restore_error_handler
Restores the previous error handler function
(PHP 4 >= 4.0.1, PHP 5)
Example 595. restore_error_handler() exampleDecide if unserialize() caused an error, then restore the original error handler. <?php The above example will output: Invalid serialized value. Code Examples / Notes » restore_error_handlerlsole
As the docs say, restore_error_handler() revert to the *previous error handler*... even if it is the same. A bug made me set twice my custom error handler and later when I was calling restore_error_handler() to restore the built-in handler nothing seemed to happen... this puzzled me for a while!
|