Db::startTrans();
try {
 //编写逻辑
 Db::commit();
} catch (\Exception $e) {
 Db::rollback();
 exception($e->getMessage());
}

thinkphp 开启事物

Q.E.D.