この記事では、主に PHP で実装された単純な例外処理クラスを紹介し、オブジェクト指向技術に基づく PHP の例外処理操作の関連実装手法を具体的な例に基づいて分析します。必要な方は参考にしてください。
詳細は次のとおりです。 :
<?php header('content-type:text/html;charset=UTF-8'); // 创建email异常处理类 class emailException extends exception { } // 创建pwd异常处理类 class pwdException extends exception { public function __tostring(){ return $this->getMessage().'in file:'.$this->getFile().'on line:'.$this->getLine(); } } function reg($reginfo = null) { // 依据不同错误抛出不同异常 if (empty($reginfo) || !isset($reginfo)) { throw new Exception('参数非法'); } if (empty($reginfo['email'])) { throw new emailException('邮件为空'); } if ($reginfo['pwd'] != $reginfo['repwd']) { throw new pwdException('两次密码不一致!'); } } // 接收不同异常,并针对性处理! try { reg(array('email' => '1078789950@qq.com', 'pwd' => '123', 'repwd' => '1231' )); } catch (Exception $e) { echo $e ->getMessage(); } catch (emailException $ee) { echo $ee ->getMessage(); } catch (pwdException $ep) { echo $ep; }
以上がこの記事の全内容です、皆様の勉強に少しでもお役に立てれば幸いです。関連する推奨事項:STRSTR関数の例の例文字列が存在するかどうかを判断するためのコードphp_php基本のtime()とmktime()メソッドの違い
PHPの配列宣言、トラバーサル、配列グローバル変数の使い方のまとめ_phpの基本
以上がPHPで例外処理クラスを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。