En son web geliştirme öğreticiler
 

PHP restore_exception_handler() Function

<PHP Hata Başvurusu

Örnek

istisna işleyicisi örneği Restore:

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

Böyle Yukarıdaki kod irade çıktı üretir:

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


Tanımı ve Kullanımı

restore_exception_handler() fonksiyonu önceki istisna işleyicisi geri yükler.

Bu fonksiyon ile değiştirdikten sonra önceki istisna işleyicisi yüklemek için kullanılan set_exception_handler() fonksiyonu.

Tip: Bir önceki istisna işleyicisi yerleşik istisna işleyicisi veya kullanıcı tanımlı bir istisna eylemcisi olabilir.


Sözdizimi

restore_exception_handler() ;

Teknik detaylar

Geri dönüş değeri: Herzaman doğru
PHP Sürümü: 5.0+

<PHP Hata Başvurusu