当前位置:首页 > PHP教程 > php类库 > 列表

PHP之Category类库 无限分类

发布:smiling 来源: PHP粉丝网  添加日期:2022-06-20 08:18:35 浏览: 评论:0 

Category类库 无限分类

以下是使用该类库的方法

  1. include("Common/Category.class.php"); 
  2.  
  3. $Category = new Category("ArticleCategory",array('id','pid','name','fullname')); 
  4.  
  5. $categoryList = $Category->getList(); 

1、通过include包含类库

2、通过new实例化类

3、调用getList()方法获取所有分类列表

4、返回:所有分类列表,可以通过获取fullname显示参考。

效果如图:

PHP之Category类库 无限分类

以下是类库完整源码:

  1. <?php 
  2.  
  3.    
  4.  
  5. /** 
  6.  
  7.  * 类功能:php无限分类 
  8.  
  9.  * author:252588119@qq.com 
  10.  
  11.  * 使用方法见:http://liqingbo.cn/blog-434.html 
  12.  
  13.  */ 
  14.  
  15. class Category { 
  16.  
  17.    
  18.  
  19.     private $model;                                                           //分类的数据表模型 
  20.  
  21.     private $rawList = array();                                              //原始的分类数据 
  22.  
  23.     private $formatList = array();                                           //格式化后的分类 
  24.  
  25.     private $error = "";                                                      //错误信息 
  26.  
  27.     private $icon = array('&nbsp;&nbsp;│''&nbsp;&nbsp;├ ''&nbsp;&nbsp;└ ');  //格式化的字符 
  28.  
  29.     private $fields = array();                                               //字段映射,分类id,上级分类pid,分类名称name,格式化后分类名称fullname 
  30.  
  31.    
  32.  
  33.     /** 
  34.  
  35.      * 构造函数,对象初始化 
  36.  
  37.      * @param array,object  $model      数组或对象,基于TP3.0的数据表模型名称,若不采用TP,可传递空值。 
  38.  
  39.      * @param array         $field      字段映射,分类cid,上级分类pid,分类名称,格式化后分类名称fullname 
  40.  
  41.      */ 
  42.  
  43.    
  44.  
  45.     public function __construct($model = ''$fields = array()) { 
  46.  
  47.         if (is_string($model) && (!emptyempty($model))) { 
  48.  
  49.             if (!$this->model = D($model)) 
  50.  
  51.                 $this->error = $model . "模型不存在!"
  52.  
  53.         } 
  54.  
  55.         if (is_object($model)) 
  56.  
  57.             $this->model = &$model
  58.  
  59.    
  60.  
  61.         $this->fields['cid'] = $fields['0'] ? $fields['0'] : 'id'
  62.  
  63.         $this->fields['pid'] = $fields['1'] ? $fields['1'] : 'pid'
  64.  
  65.         $this->fields['name'] = $fields['2'] ? $fields['2'] : 'name'
  66.  
  67.         $this->fields['fullname'] = $fields['3'] ? $fields['3'] : 'fullname'
  68.  
  69.     } 
  70.  
  71.    
  72.  
  73.     /** 
  74.  
  75.      * 获取分类信息数据 
  76.  
  77.      * @param array,string  $condition  查询条件 
  78.  
  79.      * @param string        $orderby    排序 
  80.  
  81.      */ 
  82.  
  83.     private function _findAllCat($condition$orderby = NuLL) { 
  84.  
  85.         $this->rawList = $this->model->where($condition)->order($orderby)->select(); 
  86.  
  87.     } 
  88.  
  89.    
  90.  
  91.     /** 
  92.  
  93.      * 返回给定上级分类$pid的所有同一级子分类 
  94.  
  95.      * @param   int     $pid    传入要查询的pid 
  96.  
  97.      * @return  array           返回结构信息 
  98.  
  99.      */ 
  100.  
  101.     public function getChild($pid) { 
  102.  
  103.         $childs = array(); 
  104.  
  105.         foreach ($this->rawList as $Category) { 
  106.  
  107.             if ($Category[$this->fields['pid']] == $pid){ 
  108.  
  109.                 $childs[] = $Category
  110.  
  111.             } 
  112.  
  113.         } 
  114.  
  115.         return $childs
  116.  
  117.     } 
  118.  
  119.    
  120.  
  121.     /** 
  122.  
  123.      * 递归格式化分类前的字符 
  124.  
  125.      * @param   int     $cid    分类cid 
  126.  
  127.      * @param   string  $space 
  128.  
  129.      */ 
  130.  
  131.     private function _searchList($cid = 0, $space = "") { 
  132.  
  133.         $childs = $this->getChild($cid); 
  134.  
  135.         //下级分类的数组 
  136.  
  137.         //如果没下级分类,结束递归 
  138.  
  139.         if (!($n = count($childs))){ 
  140.  
  141.             return
  142.  
  143.         } 
  144.  
  145.         $m = 1; 
  146.  
  147.         //循环所有的下级分类 
  148.  
  149.         for ($i = 0; $i < $n$i++) { 
  150.  
  151.             $pre = ""
  152.  
  153.             $pad = ""
  154.  
  155.             if ($n == $m) { 
  156.  
  157.                 $pre = $this->icon[2]; 
  158.  
  159.             } else { 
  160.  
  161.                 $pre = $this->icon[1]; 
  162.  
  163.                 $pad = $space ? $this->icon[0] : ""
  164.  
  165.             } 
  166.  
  167.             $childs[$i][$this->fields['fullname']] = ($space ? $space . $pre : "") . $childs[$i][$this->fields['name']]; 
  168.  
  169.             $this->formatList[] = $childs[$i]; 
  170.  
  171.             $this->_searchList($childs[$i][$this->fields['cid']], $space . $pad . "&nbsp;&nbsp;"); //递归下一级分类 
  172.  
  173.             $m++; 
  174.  
  175.         } 
  176.  
  177.     } 
  178.  
  179.    
  180.  
  181.     /** 
  182.  
  183.      * 不采用数据模型时,可以从外部传递数据,得到递归格式化分类 
  184.  
  185.      * @param   array,string     $condition    条件 
  186.  
  187.      * @param   int              $cid          起始分类 
  188.  
  189.      * @param   string           $orderby      排序 
  190.  
  191.      * @return  array           返回结构信息 
  192.  
  193.      */ 
  194.  
  195.     public function getList($condition = NuLL, $cid = 0, $orderby = NuLL) { 
  196.  
  197.         unset($this->rawList, $this->formatList); 
  198.  
  199.         $this->_findAllCat($condition$orderby); 
  200.  
  201.         $this->_searchList($cid); 
  202.  
  203.         return $this->formatList; 
  204.  
  205.     } 
  206.  
  207.    
  208.  
  209.     /** 
  210.  
  211.      * 获取结构 
  212.  
  213.      * @param   array            $data         二维数组数据 
  214.  
  215.      * @param   int              $cid          起始分类 
  216.  
  217.      * @return  array           递归格式化分类数组 
  218.  
  219.      */ 
  220.  
  221.     public function getTree($data$cid = 0) { 
  222.  
  223.         unset($this->rawList, $this->formatList); 
  224.  
  225.         $this->rawList = $data
  226.  
  227.         $this->_searchList($cid); 
  228.  
  229.         return $this->formatList; 
  230.  
  231.     } 
  232.  
  233.    
  234.  
  235.     /** 
  236.  
  237.      * 获取错误信息 
  238.  
  239.      * @return  string           错误信息字符串 
  240.  
  241.      */ 
  242.  
  243.     public function getError() { 
  244.  
  245.         return $this->error; 
  246.  
  247.     } 
  248.  
  249.    
  250.  
  251.     /** 
  252.  
  253.      * 检查分类参数$cid,是否为空 
  254.  
  255.      * @param   int              $cid          起始分类 
  256.  
  257.      * @return  boolean           递归格式化分类数组 
  258.  
  259.      */ 
  260.  
  261.     private function _checkCatID($cid) { 
  262.  
  263.         if (intval($cid)) { 
  264.  
  265.             return true; 
  266.  
  267.         } else { 
  268.  
  269.             $this->error = "参数分类ID为空或者无效!"
  270.  
  271.             return false; 
  272.  
  273.         } 
  274.  
  275.     } 
  276.  
  277.    
  278.  
  279.     /** 
  280.  
  281.      * 检查分类参数$cid,是否为空 
  282.  
  283.      * @param   int         $cid        分类cid 
  284.  
  285.      */ 
  286.  
  287.     private function _searchPath($cid) { 
  288.  
  289.         //检查参数 
  290.  
  291.         if (!$this->_checkCatID($cid)) 
  292.  
  293.             return false; 
  294.  
  295.         $rs = $this->model->find($cid);                                        //初始化对象,查找上级Id; 
  296.  
  297.         $this->formatList[] = $rs;                                            //保存结果 
  298.  
  299.         $this->_searchPath($rs[$this->fields['pid']]); 
  300.  
  301.     } 
  302.  
  303.    
  304.  
  305.     /** 
  306.  
  307.      * 查询给定分类cid的路径 
  308.  
  309.      * @param   int         $cid        分类cid 
  310.  
  311.      * @return  array                   数组 
  312.  
  313.      */ 
  314.  
  315.     public function getPath($cid) { 
  316.  
  317.         unset($this->rawList, $this->formatList); 
  318.  
  319.         $this->_searchPath($cid);                                               //查询分类路径 
  320.  
  321.         return array_reverse($this->formatList); 
  322.  
  323.     } 
  324.  
  325.    
  326.  
  327.     /** 
  328.  
  329.      * 添加分类 
  330.  
  331.      * @param   array         $data        一维数组,要添加的数据,$data需要包含上级分类ID。 
  332.  
  333.      * @return  boolean                    添加成功,返回相应的分类ID,添加失败,返回FALSE; 
  334.  
  335.      */ 
  336.  
  337.     public function add($data) { 
  338.  
  339.         if (emptyempty($data)) 
  340.  
  341.             return false; 
  342.  
  343.         return $this->model->data($data)->add(); 
  344.  
  345.     } 
  346.  
  347.    
  348.  
  349.     /** 
  350.  
  351.      * 修改分类 
  352.  
  353.      * @param   array         $data     一维数组,$data需要包含要修改的分类cid。 
  354.  
  355.      * @return  boolean                 组修改成功,返回相应的分类ID,修改失败,返回FALSE; 
  356.  
  357.      */ 
  358.  
  359.     public function edit($data) { 
  360.  
  361.         if (emptyempty($data)) 
  362.  
  363.             return false; 
  364.  
  365.         return $this->model->data($data)->save(); 
  366.  
  367.     } 
  368.  
  369.    
  370.  
  371.     /** 
  372.  
  373.      * 删除分类 
  374.  
  375.      * @param   int         $cid        分类cid 
  376.  
  377.      * @return  boolean                 删除成功,返回相应的分类ID,删除失败,返回FALSE 
  378.  
  379.      */ 
  380.  
  381.     public function del($cid) { 
  382.  
  383.         $cid = intval($cid); 
  384.  
  385.         if (emptyempty($cid)) 
  386.  
  387.             return false; 
  388.  
  389.         $conditon[$this->fields['cid']] = $cid
  390.  
  391.         return $this->model->where($conditon)->delete(); 
  392.  
  393.     } 
  394.  
  395.    
  396.  
  397.     /** 
  398.  
  399.      * 删除分类 
  400.  
  401.      * @param   int         $cid        分类cid 
  402.  
  403.      * @return  boolean                 删除成功,返回相应的分类ID及所有子ID 数组,返回FALSE 
  404.  
  405.      */ 
  406.  
  407.     public function getIdArr($cid){ 
  408.  
  409.          $cid = !emptyempty($cid) ? intval($cid) : 0; 
  410.  
  411.          if (emptyempty($cid)) return false; 
  412.  
  413.          $list = $this->getList($condition = NuLL,$cid$orderby = NuLL); 
  414.  
  415.          foreach($list as $val){ 
  416.  
  417.              $idArr[] = $val[$this->fields['cid']]; 
  418.  
  419.          } 
  420.  
  421.          unset($list); 
  422.  
  423.          $idArr[] = $cid
  424.  
  425.          return $idArr
  426.  
  427.     } 
  428.  
  429.    
  430.  
  431.  
  432. ?> 

demo里包含一个文件夹,三个文件。Helper文件夹包含了无限分类处理类,文件夹放在Application/Common/目录下,CategoryController.class.php是控制器文件,用来演示如何使用无限分类处理类,控制器使用无限分类切记先引入use Common\Helper\Category;category_add.html是视图文件,用来演示如何在模板调用无限分类。

go_category.sql是分类表数据库文件,仅用来参考,分类表的核心字段有id:栏目id,title:栏目名,parent_id:父级栏目id,is_show:是否在前台显示, sort:前台排序。

Tags: Category PHP无限分类

分享到: