//开启事务
Db::startTrans();
try{
//提交事务
Db::commit();
}catch(){
//回滚事务
Db::rollback();
};

Thinkphp事务

添加新评论