美文网首页
swoft 事务案例代码

swoft 事务案例代码

作者: 默语者 | 来源:发表于2020-06-27 09:40 被阅读0次

swoft 事务案例代码 try catch

use Exception;

DB::beginTransaction();

try{

        //1.....

        $model = Dkuan::new($fdata);

        if(!$model->save()){

            throw new Exception($msg);

        }

        //2.....

       $model = Dkuan2::new($fdata);

       if(!$model->save()){

          throw new Exception($msg);

        }

        DB::commit();

}catch (Exception $e){

    DB::rollBack();

    $msg=$e->getMessage();

}



后端用SWOFT做的小程序API案例  《知了来客》 http://www.zllaike.com

后端用SWOFT做的小程序API案例 《我家有活动》http://www.wjyhd.com

相关文章

网友评论

      本文标题:swoft 事务案例代码

      本文链接:https://www.haomeiwen.com/subject/qirmfktx.html