PHP+MySQL实现无极限分类栏目的方法,_PHP教程

WBOY
Release: 2016-07-12 09:02:39
Original
953 people have browsed it

PHP+MySQL实现无极限分类栏目的方法,

本文实例讲述了PHP+MySQL实现无极限分类栏目的方法。分享给大家供大家参考,具体如下:

一个非常简单清晰简单的无极限分类范例,带缩进效果,只需查询一次数据表,然后递归遍历结果集,就可以了,要在php中实现栏目缩进显示可以参考一下。

$sql = 'select * from cat order by cat_id desc';
$list = $db->getAll($sql);
$list = getLevelCat($list);
function getLevelCat($catlist, $parent_id='0', $html='   ', $level='0'){
  $arr = array();
  foreach($catlist as $val){
    if($val['parent_id']==$parent_id){
      $val['html'] = str_repeat($html,$level);
      $val['level'] = $level;
      $arr[] = $val;
      $arr = array_merge($arr, getLevelCat($catlist, $val['cat_id'], $html, $level+1));
    }
  }
  return $arr;
}

Copy after login

实现效果图:

短短几行代码,比较清晰,也比较好用。

希望本文所述对大家PHP程序设计有所帮助。

您可能感兴趣的文章:

  • php+mysql实现无限级分类
  • Jquery+Ajax+PHP+MySQL实现分类列表管理(下)
  • Jquery+Ajax+PHP+MySQL实现分类列表管理(上)
  • 实现PHP+Mysql无限分类的方法汇总
  • php+mysql实现无限分类实例详解
  • php+mysql数据库实现无限分类的方法
  • PHP+Mysql树型结构(无限分类)数据库设计的2种方式实例
  • php+mysql不用递归实现的无限级分类实例(非递归)
  • php+mysql实现无限级分类 | 树型显示分类关系

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1084557.htmlTechArticlePHP+MySQL实现无极限分类栏目的方法, 本文实例讲述了PHP+MySQL实现无极限分类栏目的方法。分享给大家供大家参考,具体如下: 一个非常简...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!