최신 웹 개발 튜토리얼
 

PHP restore_exception_handler() Function

<PHP 오류 참조

예외 핸들러의 예를 복원

<?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...");
?>

이 같은 위의 코드가 출력 뭔가 :

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


정의 및 사용

restore_exception_handler() 함수는 이전의 예외 처리기를 복원한다.

이 함수는,와을 변경 한 이후 이전의 예외 처리기를 복원하는데 사용된다 set_exception_handler() 함수.

Tip: 이전 예외 핸들러가 내장 예외 처리기 또는 사용자 정의 예외 핸들러 기능이 될 수 있습니다.


통사론

restore_exception_handler() ;

기술적 세부 사항

반환 값 : 항상 TRUE
PHP 버전 : 5.0

<PHP 오류 참조