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;
}
原文:http://www.cnblogs.com/1584779745qq/p/6846202.html
總結
以上是生活随笔為你收集整理的php简单异常,PHP实现的简单异常处理类示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 列举出php代码级的优化技巧,php 代
- 下一篇: php邮件加密,怎样对邮件正文分段加密及