Maison  >  Article  >  développement back-end  >  巧妙使用php引用实现无限分类,输出层级数组

巧妙使用php引用实现无限分类,输出层级数组

WBOY
WBOYoriginal
2016-07-25 08:50:061037parcourir
数据表字段,id,parentid。
父分类parentid=0,子分类的parentid=父id。
  1. function getDataTree($rows, $id='id',$pid = 'parentid',$child = 'child',$root=0) { $tree = array(); // 树
  2. if(is_array($rows)){
  3. $array = array();
  4. foreach ($rows as $key=>$item){
  5. $array[$item[$id]] =& $rows[$key];
  6. }
  7. foreach($rows as $key=>$item){
  8. $parentId = $item[$pid];
  9. if($root == $parentId){
  10. $tree[] =&$rows[$key];
  11. }else{
  12. if(isset($array[$parentId])){
  13. $parent =&$array[$parentId];
  14. $parent[$child][]=&$rows[$key];
  15. }
  16. }
  17. }
  18. }
  19. return $tree;
  20. }
复制代码


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:php正则抓取整个域名下的图片 Article suivant:aes 加密类