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

事务的简单流程

时间:2019-07-18 12:08:54      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:sts   try   事务   ESS   cep   not   strong   class   get   

事务就是遇到错误时终止运行,转到catch抛出异常

1 try {
2 if (file_exists(‘test_try_catch.php‘)) {
3 require (‘test_try_catch.php‘);
4 } else {
5 throw new Exception(‘file is not exists‘);
6 }
7 } catch (Exception $e) {
8 echo $e->getMessage();
9 }

 

事务的简单流程

标签:sts   try   事务   ESS   cep   not   strong   class   get   

原文地址:https://www.cnblogs.com/maohonggang/p/11206344.html

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