正確的處理程序應當包括:php
讓咱們觸發一個異常:程序員
//建立可拋出一個異常的函數 function checkNum($number){ if($number>1) { throw new Exception("Value must be 1 or below"); } return true; } //在 "try" 代碼塊中觸發異常 try { checkNum(2); //If the exception is thrown, this text will not be shown echo 'If you see this, the number is 1 or below'; }catch(Exception $e) { //捕獲異常 echo 'Message: ' .$e->getMessage(); }
上面代碼將得到相似這樣一個錯誤:函數
Message: Value must be 1 or below
上面的代碼拋出了一個異常,並捕獲了它:測試
不過,爲了遵循「每一個 throw 必須對應一個 catch」的原則,能夠設置一個頂層的異常處理器來處理漏掉的錯誤。this
建立自定義的異常處理程序很是簡單。咱們簡單地建立了一個專門的類,當 PHP 中發生異常時,可調用其函數。該類必須是 exception 類的一個擴展。spa
這個自定義的 exception 類繼承了 PHP 的 exception 類的全部屬性,您可向其添加自定義的函數。code
咱們開始建立 exception 類:對象
class customException extends Exception { public function errorMessage() { //error message $errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile() .': <b>'.$this->getMessage().'</b> is not a valid E-Mail address'; return $errorMsg; } } $email = "someone@example...com"; try { //check if if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) { //throw exception if email is not valid throw new customException($email); } }catch (customException $e) { //display custom message echo $e->errorMessage(); }
這個新的類是舊的 exception 類的副本,外加 errorMessage() 函數。正由於它是舊類的副本,所以它從舊類繼承了屬性和方法,咱們可使用 exception 類的方法,好比 getLine() 、 getFile() 以及 getMessage()。blog
上面的代碼拋出了一個異常,並經過一個自定義的 exception 類來捕獲它:繼承
能夠爲一段腳本使用多個異常,來檢測多種狀況。
可使用多個 if..else 代碼塊,或一個 switch 代碼塊,或者嵌套多個異常。這些異常可以使用不一樣的 exception 類,並返回不一樣的錯誤消息:
class customException extends Exception { public function errorMessage() { //error message $errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile() .': <b>'.$this->getMessage().'</b> is not a valid E-Mail address'; return $errorMsg; } } $email = "someone@example.com"; try { //check if if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) { //throw exception if email is not valid throw new customException($email); } //check for "example" in mail address if(strpos($email, "example") !== FALSE) { throw new Exception("$email is an example e-mail"); } } catch (customException $e) { echo $e->errorMessage(); } catch(Exception $e) { echo $e->getMessage(); }
上面的代碼測試了兩種條件,如何任何條件不成立,則拋出一個異常:
若是沒有捕獲 customException,牢牢捕獲了 base exception,則在那裏處理異常。
有時,當異常被拋出時,您也許但願以不一樣於標準的方式對它進行處理。能夠在一個 "catch" 代碼塊中再次拋出異常。
腳本應該對用戶隱藏系統錯誤。對程序員來講,系統錯誤也許很重要,可是用戶對它們並不感興趣。爲了讓用戶更容易使用,您能夠再次拋出帶有對用戶比較友好的消息的異常:
class customException extends Exception { public function errorMessage() { //error message $errorMsg = $this->getMessage().' is not a valid E-Mail address.'; return $errorMsg; } } $email = "someone@example.com"; try { try { //check for "example" in mail address if(strpos($email, "example") !== FALSE) { //throw exception if email is not valid throw new Exception($email); } } catch(Exception $e) { //re-throw exception throw new customException($email); } } catch (customException $e) { //display custom message echo $e->errorMessage(); }
上面的代碼檢測在郵件地址中是否含有字符串 "example"。若是有,則再次拋出異常:
若是在其目前的 "try" 代碼塊中異常沒有被捕獲,則它將在更高層級上查找 catch 代碼塊。
set_exception_handler() 函數可設置處理全部未捕獲異常的用戶定義函數。
function myException($exception) { echo "<b>Exception:</b> " , $exception->getMessage(); } set_exception_handler('myException'); throw new Exception('Uncaught Exception occurred');
以上代碼的輸出應該相似這樣:
Exception: Uncaught Exception occurred
在上面的代碼中,不存在 "catch" 代碼塊,而是觸發頂層的異常處理程序。應該使用此函數來捕獲全部未被捕獲的異常。
簡而言之:若是拋出了異常,就必須捕獲它。