递归实现
Posted azzy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归实现相关的知识,希望对你有一定的参考价值。
function ad(){
$res=DB::table("category")->get();
$res= json_encode($res);
$res= json_decode($res,1);
$arr= $this->gettree($res,0);
var_dump($arr);
}
function gettree($data,$pid){
$tree=[];
foreach ($data as $k=>$v){
if ($v[‘pid‘]==$pid){
$v[‘son‘]=$this->gettree($data,$v[‘id‘]);
$tree[]=$v;
}
}
return $tree;
}
以上是关于递归实现的主要内容,如果未能解决你的问题,请参考以下文章