欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Yii 事务批量插入数据

程序员文章站 2022-05-13 14:19:29
...
  1. $transaction=Yii::app()->db->beginTransaction();
  2. try{
  3. $model1->save();
  4. $model2->save();
  5. $model3->save();
  6. $model4->save();
  7. $model5->save();
  8. 出错
  9. $model6->save();
  10. $transaction->commit();
  11. }
  12. catch(Exception $e){
  13. $transaction->rollBack();
  14. }
  15. model1 , model2 , model3 , model4 , model5 照样存储成功!
复制代码