thinkphp5.1使用事务 发布于 2018-10-09 / 阅读 2201 //开启事务 Db::startTrans(); try{ //提交事务 Db::commit(); }catch(){ //回滚事务 Db::rollback(); }; Thinkphp事务