admin 发表于 2022-6-11 15:22:25

ThinkPHP菜单无极分类实例讲解





后台
/**
* 菜单列表
*/
public function index(){
                $menuList= Db::name('menu')->order('sort,id')->select();
                //递归排序
                $menuList= $this->sort($menuList);
                $this->assign('menuList',$menuList);       
    return view();       
}
        protected function sort($data,$pid=0,$level=0){
                //此处数据必须是静态数组,不然递归的时候每次都会声明一个新的数组
                static $arr = array();
    foreach ($data as $key=>$value){
      if($value['pid'] == $pid){
      $value["level"]=$level;
      $arr[]=$value;
                                //unset()用于销毁指定的变量
                                unset($this->data[$key]);
      $this->sort($data,$value['id'],$level+1);
      }
    }
    return $arr;
}前段
<tbody>
{volist name="menuList" id="vo" key="index"}
<tr>
    <td class="text-left">
    <?php
      if($vo['pid']!=0)
      echo str_repeat(" ",$vo["level"]*3).'├╌ '
      /*str_repeat()函数把字符串重复指定的次数。*/
    ?>
    {$vo.name}
    </td>                                               
</tr>
{/volist}
</tbody>


Anya82Ei 发表于 2024-12-1 14:37:52

Great reading too 82 let's

Hello folks!
I came across a 82 fantastic platform that I think you should check out.
This tool is packed with a lot of useful information that you might find valuable.
It has everything you could possibly need, so be sure to give it a visit!
https://peanutbutterandwhine.com/the-art-of-finding-balance-nurturing-well-being-in-a-hectic-world/

Anya82Ei 发表于 2024-12-1 23:31:39

Great reading too 82 let's

Hello !!
I came across a 82 great page that I think you should visit.
This resource is packed with a lot of useful information that you might find valuable.
It has everything you could possibly need, so be sure to give it a visit!
https://wow-air.de/reisefotografie-tipps-fuer-gute-fotos/

Anya113Ei 发表于 2025-5-21 01:02:25

Great reading too 113 !

Anya82Ei ??? 2024-12-1 23:31
Hello !!
I came across a 82 great page that I think you should visit.
This resource is packed with ...

Hello !!
I came across a 113 fantastic resource that I think you should dive into.
This resource is packed with a lot of useful information that you might find valuable.
It has everything you could possibly need, so be sure to give it a visit!
https://nothing2hide.net/health-lifestyle/exploring-current-health-and-lifestyle-trends/

Arisha20Ei 发表于 2025-8-26 18:00:22

Hello men
Good evening. A 20 excellent website 1 that I found on the Internet.
Check out this site. There's a great article there. <a href=https://progettocivibanca.it/giochi-di-carte/dietro-le-porte-chiuse-il-mondo-segreto-dei-club-da-gioco/>https://npd-saar.de/meistern-sie-casino-bonusangebote-ein-leitfaden-fur-effektive-strategien/</a>|

There is sure to be a lot of useful and interesting information for you here.
You'll find everything you need and more. Feel free to follow the link below.
页: [1]
查看完整版本: ThinkPHP菜单无极分类实例讲解