PHP set_exception_handler() 函數(shù)
PHP set_exception_handler() 函數(shù)

定義和用法
set_exception_handler() 函數(shù)設(shè)置用戶自定義的異常處理函數(shù)。
該函數(shù)用于創(chuàng)建運(yùn)行期間的用戶自己的異常處理方法。
該函數(shù)返回舊的異常處理程序,如果失敗則返回 NULL。
語法
set_exception_handler(exception_function)
參數(shù) | 描述 |
---|---|
exception_function | 必需。規(guī)定未捕獲的異常發(fā)生時調(diào)用的函數(shù)。 該函數(shù)必須在調(diào)用 set_exception_handler() 函數(shù)之前定義。這個異常處理函數(shù)需要需要一個參數(shù),即拋出的 exception 對象。 |
提示和注釋
提示:在這個異常處理程序被調(diào)用后,腳本會停止執(zhí)行。
實(shí)例
<?php
function myException($exception)
{
echo "<b>Exception:</b> " , $exception->getMessage();
}
set_exception_handler('myException');
throw new Exception('Uncaught Exception occurred');
?>
function myException($exception)
{
echo "<b>Exception:</b> " , $exception->getMessage();
}
set_exception_handler('myException');
throw new Exception('Uncaught Exception occurred');
?>
上面代碼的輸出如下所示:
Exception: Uncaught Exception occurred

相關(guān)文章
- PHP 安裝
- PHP 語法
- PHP 變量
- PHP If Else 語句
- PHP 多維數(shù)組
- PHP array_intersect_assoc() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_values() 函數(shù)
- PHP extract() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 5 MySQLi 函數(shù)