码迷,mamicode.com
首页 > Web开发 > 详细

PHP无限极分类

时间:2017-03-09 10:45:44      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:exp   nbsp   log   技术   foreach   php   htm   height   bsp   

1、数据库设计。

技术分享

 

2、PHP代码。

//一维数组的形式

技术分享
function tree(&$list, $pid = 0, $level = 0, $html = ‘----------‘) {
static $tree = array();
foreach ($list as $v) {
if ($v[‘pid‘] == $pid) {
$v[‘level‘] = $level;
$v[‘html‘] = str_repeat($html, $level);
$tree[] = $v;
tree($list, $v[‘id‘], $level + 1);
}
}
return $tree;
}
View Code

 

//多维数组的形式

技术分享
function toLayer($cate, $pid = 0){
$arr = array();
foreach ($cate as $v){
if ($v[‘pid‘] == $pid){
$v[‘child‘] = toLayer($cate, $v[‘id‘]);
$arr[] = $v;
}
}
return $arr;
}
View Code

 

PHP无限极分类

标签:exp   nbsp   log   技术   foreach   php   htm   height   bsp   

原文地址:http://www.cnblogs.com/wwqphp/p/6524259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!