热门IT资讯网

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

发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,php7中系统自带异常类和自己创建异常类1,系统自带异常类 try catch

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();
}

0