博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Exception
阅读量:6842 次
发布时间:2019-06-26

本文共 710 字,大约阅读时间需要 2 分钟。

hot3.png

error = $error; } function getMsg(){ echo $this->error; }}try{ $file = 'tets.txt'; if(is_file($file)) $a = fopen($file,'r'); else throw new MyException('文本不存在');}catch(Exception $e){ echo $e->getMessage()."\n"; echo "\n"; echo $e->getMsg()."\n";}die;try {    $error = 'Always throw this error'; echo '执行'; $url = 'http://www.baidu.com'; $a = rand(1,10); echo $a; if($a==4){ echo '正常'; }else if($a>=7){ $error = '连接超时或者连接出错,请检查'; throw new Exception($error); }else{ throw new Exception('xxxx错误'); }    // Code following an exception is not executed.    echo 'Never executed';} catch (Exception $e) {    echo 'Caught exception: ',  $e->getMessage(), "\n";}

转载于:https://my.oschina.net/u/2411815/blog/613373

你可能感兴趣的文章
java动态代理(JDK和cglib)
查看>>
设计模式之责任链模式
查看>>
[Android Pro] Android API 23中废弃了HttpClient的解决办法
查看>>
Android webview
查看>>
UML类图关系全面剖析
查看>>
bash:command not found
查看>>
Linq 中的TakeWhile 和 SkipWhile
查看>>
JAVA开发:分享一些SpringMvc+Ibatis+spring的框架使用心得
查看>>
2017-2018-2 20155203《网络对抗技术》Exp6 信息搜集与漏洞扫描
查看>>
js中获取 table节点各tr及td的内容方法
查看>>
大专生自学Python到找到工作的心得
查看>>
Android Studio 如何使用jni
查看>>
各种环境的安装
查看>>
yum的使用
查看>>
【小超_Android】GitHub源码项目整理,希望对大家有帮助
查看>>
EntLib 3.1学习笔记(0) : 总览
查看>>
C++ 三大特性 继承(转载)
查看>>
网银在线支付接口和应用
查看>>
hdu1394 Minimum Inversion Number
查看>>
浮动产生的高度坍塌解决方法以及使用siblings()方法获取同级元素
查看>>