码迷,mamicode.com
首页 > 其他好文 > 详细

throw不会停止代码的运行

时间:2020-06-28 13:12:46      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:weight   exe   font   代码   ror   mes   eve   error   ESS   

try {
$error = ‘Always throw this error‘;
throw new Exception($error);

// Code following an exception is not executed.
echo ‘Never executed‘;

} catch (Exception $e) {
echo ‘Caught exception: ‘, $e->getMessage(), "\n";
}

echo ‘im here‘;


不管有没有catch里面的语句块, 都会顺序的执行到echo i m here 语句。

 

throw不会停止代码的运行

标签:weight   exe   font   代码   ror   mes   eve   error   ESS   

原文地址:https://www.cnblogs.com/qinqiu/p/13202016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!