set_exception_handling() 函數設置用戶定義的函數來處理異常。如果在 try/catch 塊中未捕獲異常,它會設置默認異常處理程序。調用 exception_handler 後將停止執行。
用法
set_exception_handling(exception_handler)
參數
exception_handler− 發生未捕獲異常時調用的函數名稱。該函數必須在調用 set_exception_handler() 之前定義。此處理函數需要接受一個參數,即拋出的異常對象。
返回
set_exception_hadler() 函數返回先前定義的異常處理程序的名稱,或在出錯時返回 NULL。如果之前未定義處理程序,則還返回 NULL。
示例
以下是一個例子 -
<?php
function exception_handler($exception) {
echo "Uncaught exception = " , $exception->getMessage(), "\n";
}
set_exception_handler('exception_handler');
throw new Exception('Not Found Exception');
echo "not included Executed\n";
?>
輸出
以下是輸出 -
Uncaught exception = Not Found Exception
相關用法
- PHP set_error_handler()用法及代碼示例
- PHP set_file_buffer()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setAlign()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setScript()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setOutLine()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setColor()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setFontFamily()用法及代碼示例
- PHP setlocale()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setTextWrap()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setItalic()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setVAlign()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setBgColor()用法及代碼示例
- PHP settype()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setHAlign()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setFgColor()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setShadow()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setBold()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setStrikeOut()用法及代碼示例
- PHP Spreadsheet_Excel_Writer setUnderline()用法及代碼示例
- PHP session_gc()用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 set_exception_handler() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。