PHP无限分类代码,支持数组格式化、直接输出菜单两种的解决办法
内容摘要
这篇文章主要为大家详细介绍了PHP无限分类代码,支持数组格式化、直接输出菜单两种的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔
对此感兴趣的朋友,看看idc笔记做的技术笔
文章正文
这篇文章主要为大家详细介绍了PHP无限分类代码,支持数组格式化、直接输出菜单两种的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | <code> <?php /** +------------------------------------------------ * 通用的树型类 +------------------------------------------------ * @author yangyunzhou@foxmail.com +------------------------------------------------ * @date 2010年11月23日10:09:31 +------------------------------------------------ */ class Tree { /** +------------------------------------------------ * 生成树型结构所需要的2维数组 +------------------------------------------------ * @author yangyunzhou@foxmail.com +------------------------------------------------ * @var Array */ var $arr = array (); /** +------------------------------------------------ * 生成树型结构所需修饰符号,可以换成图片 +------------------------------------------------ * @author yangyunzhou@foxmail.com +------------------------------------------------ * @var Array */ var $icon = array ( '│' , '├' , ' └' ); /** * @access private */ var $ret = '' ; /** * 构造函数,初始化类 * @param array 2维数组,例如: * 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'=>'二级栏目三'), * 6 => array('id'=>'6','parentid'=>3,'name'=>'三级栏目一'), * 7 => array('id'=>'7','parentid'=>3,'name'=>'三级栏目二') * ) */ function tree( $arr = array ()) { $this ->arr = $arr ; $this ->ret = '' ; return is_array ( $arr ); } /** * 得到父级数组 * @param int * @return array */ function get_parent( $myid ) { $newarr = array (); if (!isset( $this ->arr[ $myid ])) return false; $pid = $this ->arr[ $myid ][ 'pid' ]; $pid = $this ->arr[ $pid ][ 'pid' ]; if ( is_array ( $this ->arr)) { foreach ( $this ->arr as $id => $a ) { if ( $a [ 'pid' ] == $pid ) $newarr [ $id ] = $a ; } } return $newarr ; } /** * 得到子级数组 * @param int * @return array */ function get_child( $myid ) { $a = $newarr = array (); if ( is_array ( $this ->arr)) { foreach ( $this ->arr as $id => $a ) { if ( $a [ 'pid' ] == $myid ) $newarr [ $id ] = $a ; } } return $newarr ? $newarr : false; } /** * 得到当前位置数组 * @param int * @return array */ function get_pos( $myid ,& $newarr ) { $a = array (); if (!isset( $this ->arr[ $myid ])) return false; $newarr [] = $this ->arr[ $myid ]; $pid = $this ->arr[ $myid ][ 'pid' ]; if (isset( $this ->arr[ $pid ])) { $this ->get_pos( $pid , $newarr ); } if ( is_array ( $newarr )) { krsort( $newarr ); foreach ( $newarr as $v ) { $a [ $v [ 'id' ]] = $v ; } } return $a ; } /** * ------------------------------------- * 得到树型结构 * ------------------------------------- * @author yangyunzhou@foxmail.com * @param $myid 表示获得这个ID下的所有子级 * @param $str 生成树形结构基本代码, 例如: "<option value=\$id \$select>\$spacer\$name</option>" * @param $sid 被选中的ID, 比如在做树形下拉框的时候需要用到 * @param $adds * @param $str_group */ function get_tree( $myid , $str , $sid = 0, $adds = '' , $str_group = '' ) { $number =1; $child = $this ->get_child( $myid ); if ( is_array ( $child )) { $total = count ( $child ); foreach ( $child as $id => $a ) { $j = $k = '' ; if ( $number == $total ) { $j .= $this ->icon[2]; } else { $j .= $this ->icon[1]; $k = $adds ? $this ->icon[0] : '' ; } $spacer = $adds ? $adds . $j : '' ; $selected = $id == $sid ? 'selected' : '' ; @extract( $a ); $parentid == 0 && $str_group ? eval ( "\$nstr = \"$str_group\";" ) : eval ( "\$nstr = \"$str\";" ); $this ->ret .= $nstr ; $this ->get_tree( $id , $str , $sid , $adds . $k . ' ' , $str_group ); $number ++; } } return $this ->ret; } /** * 同上一方法类似,但允许多选 */ function get_tree_multi( $myid , $str , $sid = 0, $adds = '' ) { $number =1; $child = $this ->get_child( $myid ); if ( is_array ( $child )) { $total = count ( $child ); foreach ( $child as $id => $a ) { $j = $k = '' ; if ( $number == $total ) { $j .= $this ->icon[2]; } else { $j .= $this ->icon[1]; $k = $adds ? $this ->icon[0] : '' ; } $spacer = $adds ? $adds . $j : '' ; $selected = $this ->have( $sid , $id ) ? 'selected' : '' ; @extract( $a ); eval ( "\$nstr = \"$str\";" ); $this ->ret .= $nstr ; $this ->get_tree_multi( $id , $str , $sid , $adds . $k . ' ' ); $number ++; } } return $this ->ret; } function have( $list , $item ){ return ( strpos ( ',,' . $list . ',' , ',' . $item . ',' )); } /** +------------------------------------------------ * 格式化数组 +------------------------------------------------ * @author yangyunzhou@foxmail.com +------------------------------------------------ */ function getArray( $myid =0, $sid =0, $adds = '' ) { $number =1; $child = $this ->get_child( $myid ); if ( is_array ( $child )) { $total = count ( $child ); foreach ( $child as $id => $a ) { $j = $k = '' ; if ( $number == $total ) { $j .= $this ->icon[2]; } else { $j .= $this ->icon[1]; $k = $adds ? $this ->icon[0] : '' ; } $spacer = $adds ? $adds . $j : '' ; @extract( $a ); $a [ 'title' ] = $spacer . ' ' . $a [ 'title' ]; $this ->ret[ $a [ 'id' ]] = $a ; $fd = $adds . $k . ' ' ; $this ->getArray( $id , $sid , $fd ); $number ++; } } return $this ->ret; } } ?> </code> |
注:关于PHP无限分类代码,支持数组格式化、直接输出菜单两种的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释