首页 php教程 php手册 php实现无限级分类

php实现无限级分类

Jun 21, 2016 am 08:57 AM

author: askie blog: http://www.pkphp.com 版权: 随便用 无限分类

/**   
* author: askie   
* blog: http://www.pkphp.com   
* 版权: 随便用   
* 无限分类   
*/   
class Tree   
{   
public $data=array();   
public $cateArray=array();   
 
function Tree()   
{   
 
}   
function setNode ($id, $parent, $value)   
{   
$parent = $parent?$parent:0;   
$this->data[$id] = $value;   
$this->cateArray[$id] = $parent;   
}   
function getChildsTree($id=0)   
{   
$childs=array();   
foreach ($this->cateArray as $child=>$parent)   
{   
if ($parent==$id)   
{   
$childs[$child]=$this->getChildsTree($child);   
}   
 
}   
return $childs;   
}   
function getChilds($id=0)   
{   
$childArray=array();   
$childs=$this->getChild($id);   
foreach ($childs as $child)   
{   
$childArray[]=$child;   
$childArray=array_merge($childArray,$this->getChilds($child));   
}   
return $childArray;   
}   
function getChild($id)   
{   
$childs=array();   
foreach ($this->cateArray as $child=>$parent)   
{   
if ($parent==$id)   
{   
$childs[$child]=$child;   
}   
}   
return $childs;   
}   
//单线获取父节点   
function getNodeLever($id)   
{   
$parents=array();   
if (key_exists($this->cateArray[$id],$this->cateArray))   
{   
$parents[]=$this->cateArray[$id];   
$parents=array_merge($parents,$this->getNodeLever($this->cateArray[$id]));   
}   
return $parents;   
}   
function getLayer($id,$preStr=’-’)   
{   
return str_repeat($preStr,count($this->getNodeLever($id)));   
}   
function getValue ($id)   
{   
return $this->data[$id];   
} // end func   
}   
 
$Tree = new Tree(”请选择分类”);   
//setNode(目录ID,上级ID,目录名字);   
$Tree->setNode(1, 0, ‘目录1′);   
$Tree->setNode(2, 1, ‘目录2′);   
$Tree->setNode(5, 3, ‘目录5′);   
$Tree->setNode(3, 0, ‘目录3′);   
$Tree->setNode(4, 2, ‘目录4′);   
$Tree->setNode(9, 4, ‘目录9′);   
$Tree->setNode(6, 2, ‘目录6′);   
$Tree->setNode(7, 2, ‘目录7′);   
$Tree->setNode(8, 3, ‘目录8′);   
 
//print_r($Tree->getChildsTree(0));   
//print_r($Tree->getChild(0));   
//print_r($Tree->getLayer(2));   
 
$category = $Tree->getChilds();   
 
//遍历输出   
foreach ($category as $key=>$id)   
{   
echo $id.$Tree->getLayer($id, ‘-’).$Tree->getValue($id).”\n”;   
}   
 
?>  
 



本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

仓库:如何复兴队友
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)