Home > Backend Development > PHP Tutorial > Unlimited classification list, level classification list_PHP tutorial

Unlimited classification list, level classification list_PHP tutorial

WBOY
Release: 2016-07-12 08:51:44
Original
1051 people have browsed it

Unlimited classification list, level classification list

<?<span>php
</span><span>header</span>("Content-type: text/html; charset=utf-8"<span>);
</span><span>$arr</span> = <span>array</span><span>(
    </span>0=><span>array</span>('Id'=>1,'Name'=>'文件管理','Pid'=>0),
    1=><span>array</span>('Id'=>2,'Name'=>'来源管理','Pid'=>0),
    2=><span>array</span>('Id'=>3,'Name'=>'文件添加','Pid'=>1),
    3=><span>array</span>('Id'=>4,'Name'=>'文件删除','Pid'=>1),
    4=><span>array</span>('Id'=>5,'Name'=>'人员列表','Pid'=>2),
    5=><span>array</span>('Id'=>6,'Name'=>'添加用户','Pid'=>5),
    6=><span>array</span>('Id'=>7,'Name'=>'编辑用户','Pid'=>5),<span>
);

</span><span>function</span> getTree(<span>$arr</span>, <span>$pid</span>=0,<span>$deep</span>=0<span>)
{
    </span><span>static</span> <span>$tree</span> = <span>array</span><span>();
    </span><span>foreach</span>(<span>$arr</span> <span>as</span> <span>$k</span>=><span>$row</span><span>)
    {
        </span><span>if</span>( <span>$row</span>['Pid'] == <span>$pid</span><span> )
        {
            </span><span>$row</span>['deep'] = <span>$deep</span><span>;
            </span><span>$tree</span>[] = <span>$row</span><span>;
            </span><span>unset</span>(<span>$arr</span>[<span>$k</span><span>]);
            getTree(</span><span>$arr</span>,<span>$row</span>['Id'],<span>$deep</span>+1<span>);
        }
    }
    </span><span>return</span> <span>$tree</span><span>;
}

</span><span>$res</span> = getTree(<span>$arr</span><span>);
</span><span>echo</span> "<pre class="brush:php;toolbar:false">"<span>;
</span><span>print_r</span>(<span>$res</span>);
Copy after login

Run result:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1128374.htmlTechArticleUnlimited classification list, level classification list? php header ("Content-type: text/html; charset=utf -8" ); $arr = array ( 0= array ('Id'=1,'Name'='File Management','Pid'=0), 1= array ('Id'=2,'...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template