php7中系统自带异常类和自己创建异常类比较

2021-05-11 06:27

阅读:294

标签:cat   extend   ext   echo   function   message   自己   比较   get   

php7中系统自带异常类和自己创建异常类

1,系统自带异常类 try catch
try{
throw new Exception(‘96net.com.cn‘,10);
}catch(Exception $e){
echo $e->getMessage();
echo $e->getCode();
}

2,自己创建异常类

class MyException extends Exception{
function demo(){
echo "dc3688.com";
}
}
try{
throw new MyException(‘96net.com.cn‘,10);
}catch(Exception $e){
echo $e->getMessage();
echo $e->getCode();
echo $e->demo();
}

php7中系统自带异常类和自己创建异常类比较

标签:cat   extend   ext   echo   function   message   自己   比较   get   

原文地址:https://blog.51cto.com/13959155/2459333


评论


亲,登录后才可以留言!