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; }

更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《ThinkPHP入门教程》、《thinkPHP模板操作技巧总结》、《ThinkPHP常用方法总结》、《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《Zend FrameWork框架入门教程》及《PHP模板技术总结》。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/ace9323a0e71948d4a0961c866858587.html