array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.restore-exception-handler.php', 1 => 'restore_exception_handler', 2 => 'Restores the previously defined exception handler function', ), 'up' => array ( 0 => 'ref.errorfunc.php', 1 => 'Функції Обробки Помилок', ), 'prev' => array ( 0 => 'function.restore-error-handler.php', 1 => 'restore_error_handler', ), 'next' => array ( 0 => 'function.set-error-handler.php', 1 => 'set_error_handler', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/errorfunc/functions/restore-exception-handler.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

restore_exception_handler

(PHP 5, PHP 7, PHP 8)

restore_exception_handler Restores the previously defined exception handler function

Опис

restore_exception_handler(): true

Used after changing the exception handler function using set_exception_handler(), to revert to the previous exception handler (which could be the built-in or a user defined function).

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Завжди повертає true.

Приклади

Приклад #1 restore_exception_handler() example

<?php
function exception_handler_1(Exception $e)
{
echo
'[' . __FUNCTION__ . '] ' . $e->getMessage();
}

function
exception_handler_2(Exception $e)
{
echo
'[' . __FUNCTION__ . '] ' . $e->getMessage();
}

set_exception_handler('exception_handler_1');
set_exception_handler('exception_handler_2');

restore_exception_handler();

throw new
Exception('This triggers the first exception handler...');
?>

Поданий вище приклад виведе:

[exception_handler_1] This triggers the first exception handler...

Прогляньте також