無限極分類刪除父節點時將父節點的所有子節點刪除:
where($depth)->field('id')->select(); //查询需要删除的所有子id if($ids){ $arr=array(); foreach($ids as $key=>$vo){ $arr[]=$vo['id']; } } if($arr){ $str=implode(',', $arr); $depth['id']=array('in',$str); $update['status']=0; $res=$this->where($depth)->save($update); if($res){ echo '删除成功'; }else{ echo '删除失败'; } }else{ echo '删除失败'; } }
以上就是無限分類節點時將所有父節點的所有子節點刪除的內容,更多關於父節點的所有子節點刪除PHP中文網(www.php.cn)!