PHP restore_exception_handler() 関数
例
restore_exception_handler()の例:
<?php
// Two user-defined exception handler functions
function myException1($exception){
echo "[" . FUNCTION . "]" . $exception->getMessage();
}
function myException2($exception){
echo "[" . FUNCTION . "]" . $exception->getMessage();
}
set_exception_handler("myException1");
set_exception_handler("myException2");
restore_exception_handler();
// Throw exception
throw new Exception("This triggers the first exception handler...");
?>
定義と使用法
restore_exception_handler( 関数は、以前の例外ハンドラを復元します。
このset_exception_handler()関数は、以前の例外ハンドラを変更した後に復元するために使用されます。
ヒント:以前の例外ハンドラーは、組み込みの例外ハンドラーまたはユーザー定義の例外ハンドラー関数である可能性があります。
構文
<div>restore_exception_handler();</div>
Technical Details
Return Value: | 常にTRUE |
---|---|
PHP バージョン: |
5.0+ |
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。