thinkphp5 事务回滚

thinkphp5
        
try {
            $user_add['user_id'] = $post_data['openid'];
            //开启事务
            Db::startTrans();
            $re['add1'] = Db::table($prefix . 'tf_goods_user')->insert($user_add);

            //组装数据 往表goods_order 记录订单信息
            $order_add['order_no'] = $order_no;
            $re['add2'] = Db::table($prefix . 'tf_goods_order')->insert($order_add);
 
            if (in_array('0', $re)) {
                throw new \Exception('数据实例化失败');
            }
            //提交事务            Db::commit();
           
        } catch (Exception $e) {
            //如获取到异常信息,对所有表的删、改、写操作,都会回滚至操作前的状态:
            Db::rollback();
            $return['status'] = 0;
            $return['info'] = '提交失败,请重新操作';

        }

你可能感兴趣的:(php,tp5,tp3整理,php)