PHP实现的简单异常处理类示例

Posted 堕落白天使

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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‘ => ‘[email protected]‘, ‘pwd‘ => ‘123‘, ‘repwd‘ => ‘1231‘ ));
} catch (Exception $e) {
echo $e ->getMessage();
} catch (emailException $ee) {
echo $ee ->getMessage();
} catch (pwdException $ep) {
echo $ep;
}

 

北京网站建设




































以上是关于PHP实现的简单异常处理类示例的主要内容,如果未能解决你的问题,请参考以下文章

PHP异常处理

php异常处理类

PHP异常处理

简单的实现登录拦截及统一异常处理(自定义异常)

PHP异常处理

PHP异常处理类(文件上传提示)