1.php異常和錯誤
在其他語言中,異常和錯誤是有區別的,但是PHP,遇見自身錯誤時,會觸發一個錯誤,而不是跑出異常。並且,php大部分情況,都會觸發錯誤,終止程式執行,在php5中,try catch是沒有辦法處理錯誤的。
php7是可以捕獲錯誤的;
1.1 php5 錯誤異常
// 1.例外處理 try{ throw new Exception("Error Processing Request", 1); }catch ( Exception $e){ echo $e->getCode().'<br/>'; echo $e->getMessage().'<br/>'; echo $e->getLine().'<br/>'; echo $e->getFile().'<br/>'; } 返回: 1 Error Processing Request 158 E:phpwebenvPHPTutorialWWWtestindex.php // 2.結果php錯誤處理機制 function MyErrorHandler($error,$errstr,$errfile,$errline){ echo '<b> Custom error:</b>'.$error.':'.$errstr.'<br/>'; echo "Error on line $errline in ".$errfile; } set_error_handler('MyErrorHandler',E_ALL|E_STRICT); try{ // throw new Exception("Error Processing Request", 4); trigger_error('error_msg'); }catch ( Exception $e){ echo $e->getCode().'<br/>'; echo $e->getMessage().'<br/>'; echo $e->getLine().'<br/>'; echo $e->getFile().'<br/>'; } 結果: Custom error:1024:error_msg Error on line 164 in E:phpwebenvPHPTutorialWWWtestindex.php //3. 處理致命錯誤:指令碼結束後執行 function shutdown_function(){ $e = error_get_last(); echo '<pre/>'; var_dump($e); } register_shutdown_function('shutdown_function'); try{ // throw new Exception("Error Processing Request", 4); // trigger_error('error_msg'); fun(); }catch ( Exception $e){ echo $e->getCode().'<br/>'; echo $e->getMessage().'<br/>'; echo $e->getLine().'<br/>'; echo $e->getFile().'<br/>'; } 結果: Fatal error: Uncaught Error: Call to undefined function fun() in E:phpwebenvPHPTutorialWWW testindex.php:172 Stack trace: #0 {main} thrown in E:phpwebenvPHPTutorialWWWtestindex.php on line 172 array(4) { ["type"]=> int(1) ["message"]=> string(131) "Uncaught Error: Call to undefined function fun() in E:phpwebenvPHPTutorialWWWtestindex.php:172 Stack trace: #0 {main} thrown" ["file"]=> string(43) "E:phpwebenvPHPTutorialWWWtestindex.php" ["line"]=> int(172) } 以上方法可以看出,php沒有捕獲到異常,只能依賴set_error_handler()和register_shutdown_function();來處理,set_error_handler只能接受 異常和非致命的錯誤。register_shutdown_function():主要針對die()或致命錯誤,即程式終結後執行;所以php5沒有很好的例外處理機制。
1.2 php7的例外處理
// 處理致命錯誤:指令碼結束後執行 function shutdown_function(){ $e = error_get_last(); echo '<pre>'; var_dump($e); } register_shutdown_function('shutdown_function'); // 結果php錯誤處理機制 function MyErrorHandler($error,$errstr,$errfile,$errline){ echo '<b> Custom error:</b>'.$error.':'.$errstr.'<br/>'; echo "Error on line $errline in ".$errfile; } set_error_handler('MyErrorHandler',E_ALL|E_STRICT); try{ // throw new Exception("Error Processing Request", 4); // trigger_error('error_msg'); fun(); }catch ( Error $e){ echo $e->getCode().'<br/>'; echo $e->getMessage().'<br/>'; echo $e->getLine().'<br/>'; echo $e->getFile().'<br/>'; } 結果: 0 Call to undefined function fun() 172 E:phpwebenvPHPTutorialWWWtestindex.php NULL register_shutdown_function();沒有捕獲到異常
// 2. 如果不用try catch 捕獲 function exception_handler( Throwable $e){ echo 'catch Error:'.$e->getCode().':'.$e->getMessage().'<br/>'; } set_exception_handler('exception_handler'); fun();
總結: Throwable 是Error 和 Exception 的基礎類別,在php7中,如果既想捕獲異常有需要捕獲錯誤
try{ fun(); }catch ( Throwable $e){ echo $e->getCode().'<br/>'; echo $e->getMessage().'<br/>'; echo $e->getLine().'<br/>'; echo $e->getFile().'<br/>'; }
3. thinkphp5框架的錯誤處理:
在異常錯誤處理類:Error有這個處理 // 註冊錯誤和例外處理機制 thinkError::register(); /** * 註冊例外處理 * @return void */ public static function register() { error_reporting(E_ALL); set_error_handler([__CLASS__, 'appError']); set_exception_handler([__CLASS__, 'appException']); register_shutdown_function([__CLASS__, 'appShutdown']); } 當程式出現錯誤時,會執行這些異常、錯誤的函數;
連結資料庫後,處理異常的是:
/** * 連線資料庫方法 * @access public * @param array $config 連線引數 * @param integer $linkNum 連線序號 * @param array|bool $autoConnection 是否自動連線主資料庫(用於分散式) * @return PDO * @throws Exception */ public function connect(array $config = [], $linkNum = 0, $autoConnection = false) { if (!isset($this->links[$linkNum])) { if (!$config) { $config = $this->config; } else { $config = array_merge($this->config, $config); } // 連線引數 if (isset($config['params']) && is_array($config['params'])) { $params = $config['params'] + $this->params; } else { $params = $this->params; } // 記錄當前欄位屬性大小寫設定 $this->attrCase = $params[PDO::ATTR_CASE]; // 資料返回型別 if (isset($config['result_type'])) { $this->fetchType = $config['result_type']; } try { if (empty($config['dsn'])) { $config['dsn'] = $this->parseDsn($config); } if ($config['debug']) { $startTime = microtime(true); } $this->links[$linkNum] = new PDO($config['dsn'], $config['username'], $config['password'], $params); if ($config['debug']) { // 記錄資料庫連線資訊 Log::record('[ DB ] CONNECT:[ UseTime:' . number_format(microtime(true) - $startTime, 6) . 's ] ' . $config['dsn'], 'sql'); } } catch (PDOException $e) { if ($autoConnection) { Log::record($e->getMessage(), 'error'); return $this->connect($autoConnection, $linkNum); } else { throw $e; } } } return $this->links[$linkNum]; } 當資料庫連結失敗後,可以重新連結或者直接丟擲異常; /** * 解構方法 * @access public */ public function __destruct() { // 釋放查詢 if ($this->PDOStatement) { $this->free(); } // 關閉連線 $this->close(); } 當執行sql失敗後,呼叫解構方法,關閉資料庫連結;
4. php發生錯誤時,資源釋放
php是解釋性指令碼,每個php頁面都是一個獨立的執行程式,不管用什麼方式只要執行完了(包括die(),exit(),致命錯誤終止程式),都會把結果返回給伺服器,都會關閉。程式都關閉了,資源當然會被釋放;
unset();當多個變數名或者物件名指向一塊儲存地址時,unset()函數的作用僅僅是銷毀變數名和儲存地址的指向而已,當僅有一個變數名或者物件名,unset銷毀的是指定的儲存地址上的內容;
解構方法:當範例化的物件,沒有其他變數或物件名指向時,就會執行此方法;或者是在指令碼結束後,釋放物件資源時,執行此方法;
相關推薦:
以上就是php5和php7的例外處理機制(thinkphp5 例外處理的分析)的詳細內容,更多請關注TW511.COM其它相關文章!