phpパッケージ異常な処理クラス

1238 ワード

この例ではphpカスタム例外処理クラスについて説明します.参考にしてください.具体的な内容は以下の通りです.
一、コード

 
 
 
 
         
 
 
getMessage()."           "; 
  $errorMsg .="
"; $errorMsg .=" :".$this->getFile(); $errorMsg .="
"; $errorMsg .=" :".$this-> getLine(); return $errorMsg; } } function check_tel($tel){ // $checkphone="/^13(\\d{9})$/"; // $counts=preg_match($checkphone,$tel); // return $counts; // } $tel = "133891gfj"; // /* */ try { if(check_tel($tel) !=1){ throw new TelException($tel); } }catch (TelException $e){ include_once("error.php"); } ?>