controller节制器代码:
/** * 菜单列表 */ 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; }
html模板代码:
<tbody> {volist key="index"} <tr> <td> <?php if($vo['pid']!=0) echo str_repeat(" ",$vo["level"]*3).'├╌ ' /*str_repeat()函数把字符串反复指定的次数。*/ ?> {$vo.name} </td> </tr> {/volist} </tbody>
到此这篇关于ThinkPHP菜单无极分类实例讲授的文章就先容到这了,更多相关ThinkPHP菜单无极分类内容请搜索剧本之家以前的文章或继承欣赏下面的相关文章但愿各人今后多多支持剧本之家!
您大概感乐趣的文章: