php封装一个异常的处理类
程序员文章站
2024-03-12 13:00:44
本文实例为大家分享了php自定义异常处理类,供大家参考,具体内容如下
一、代码
一、代码
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>自定义异常处理类</title> </head> <body> <?php class telexception extends exception{ //定义telexception类,继承exception类 public function errortel(){ //定义方法返回错误信息 $errormsg = "出错原因:".$this->getmessage()."不是一个合法的电话号码"; $errormsg .="<br>"; $errormsg .="错误文件路径:".$this->getfile(); $errormsg .="<br>"; $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"); } ?> </body> </html> </body> </html>
二、运行结果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。