您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關怎么在thinkPHP5.0框架中對事務進行處理,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
事務的調用在mysql里需要注意下數據庫引擎,處理前先查看一下
刪除方法:
public function del() { $cate = new CateModel; $id=input('id'); $selectID=$cate->find($id); if($id == ''){ $this->error('請不要惡意測試'); } //調用事務刪除 $del=$cate->shiwu($id); if($del == true){ $this->success('刪除成功/!'); }else{ $this->error('刪除失敗/!'); } }
調用事務刪除
//事務處理刪除 public function shiwu($id) { $cates=Cate::getChildId($id); Db::startTrans($id,$cates); //$cates是所有子分類的一維數組 try{ Db::table('tp_cate')->where('id','in',$cates)->delete(); //刪除所有子分類 Db::table('tp_cate')->where('id',$id)->delete(); //刪除自身 // 提交事務 Db::commit(); return true; } catch (\Exception $e) { // 回滾事務 Db::rollback(); return false; } }
getChildId方法
public function getChildId($id) { $cateres=Cate::select(); return $this->_getChildId($cateres,$id); } public function _getChildId($cateres,$id) { static $arr = array(); foreach ($cateres as $k => $v) { if($id == $v['pid']){ $arr[] = $v['id']; $this->_getChildId($cateres,$v['id']); } } return $arr; }
關于怎么在thinkPHP5.0框架中對事務進行處理就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。