本文实例讲述了thinkPHP5.0框架事务处理操作。分享给大家供大家参考,具体如下:
事务的调用在MysqL里需要注意下数据库引擎,处理前先查看一下
find($id);
if($id == ''){
$this->error('请不要恶意测试');
}
//调用事务删除
$del=$cate->shiwu($id);
if($del == true){
$this->success('删除成功/!');
}else{
$this->error('删除失败/!');
}
}
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方法
_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相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《PHP模板技术总结》。
原文链接:https://www.f2er.com/thinkphp/15683.html