PHP例外の詳しい説明
PHP例外とは何ですか?
PHP 5 は、新しいオブジェクト指向のエラー処理メソッドを提供します。例外処理は、指定されたエラー (例外) 条件が発生したときにスクリプトの通常のフローを変更するために使用されます。この状況を例外と呼びます。
一般的な使用法:
<?php function test() { throw new Exception("异常啦"); } try { test(); } catch (Exception $e) { echo $e->getMessage(); }
キャッチ: コード ブロックは例外をキャッチし、例外情報を含むオブジェクトを作成します
カスタム例外クラス:
class myException extends Exception { public function errorMessage() { $errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile() .': <b>'.$this->getMessage().'</b> is not a valid E-Mail address'; return $errorMsg; } } try { throw new myException($email); }catch (myException $e){ echo $e->errorMessage(); }
Fatal error: Uncaught exception 'myException' in D:\AppServ\www\cctv\trunk\index.php:12 Stack trace: #0 {main} thrown in D:\AppServ\www\cctv\trunk\index.php on line 12
PHP デフォルト例外クラスの詳細:
class exception { protected $message = 'Unknow exception'; //自定义的异常信息 protected $code = 0; //定义的异常代码 protected $file; //发生异常的PHP程序名 protected $line; //发生异常的PHP行号 //用于传递用户自定义异常信息和用户自定义异常代码的构造函数 function __construct($message=null,$code=0); final function getMessage(); final function getCode(); final function getFile(); final function getLine(); final function getTrace(); //以数组形式返回异常传递的路线 final function getTraceAsString(); //返回格式化成字符串的getTrace函数信息 function __toString(); //可重载,用于返回可输出的字符串 }
PHP 例外クラスの役割: