php 角色权限菜单设置demo

时间:2019-05-04 07:46:47
【文件属性】:
文件名称:php 角色权限菜单设置demo
文件大小:34KB
文件格式:ZIP
更新时间:2019-05-04 07:46:47
php,角色权限 树型结构,角色权限。 直接可以运行的PHP demo. //只适合两级菜单 $data=array( 1 => array('id'=>'1','parentid'=>0,'name'=>'一级栏目一'), 2 => array('id'=>'2','parentid'=>0,'name'=>'一级栏目二'), 3 => array('id'=>'3','parentid'=>1,'name'=>'二级栏目一'), 4 => array('id'=>'4','parentid'=>1,'name'=>'二级栏目二'), 5 => array('id'=>'5','parentid'=>2,'name'=>'二级栏目三') ); $tree = new Tree; // new 之前请记得包含tree文件! $tree->tree($data); // 数据格式请参考 tree方法上面的注释! // 下拉菜单选项使用 get_tree方法 $html='
    '; $str = "
  • \$spacer\$name
  • "; $html .= $tree->get_tree(0,$str,-1).'
'; $script=' '; echo $script.$html;
【文件预览】:
selectTree.js
jquery-1.6.2.min.js
index.php
tree.class.php

网友评论