php语言 百分网手机站

PHP学习:Category类库无限分类

时间:2020-10-03 15:47:17 php语言 我要投稿

PHP学习:Category类库无限分类

  学习是没有尽头的,只有在不断的练习中才能提高自己。以下是百分网小编精心为大家整理的关于PHP语言学习的Category类库 无限分类方面的知识,希望对大家有所帮助!更多内容请关注应届毕业生网!

PHP学习:Category类库无限分类

 

  以下是使用该类库的方法

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

  1、通过include包含类库

  2、通过new实例化类

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

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

  效果如图:

  以下是类库完整源码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
 
/**
 * 类功能:php无限分类
 * author:252588119@qq.com
 * 使用方法见:http://liqingbo.cn/blog-434.html
 */
class Category {
 
    private $model;                                                           //分类的数据表模型
    private $rawList array();                                              //原始的分类数据
    private $formatList array();                                           //格式化后的分类
    private $error "";                                                      //错误信息
    private $icon array('&nbsp;&nbsp;│''&nbsp;&nbsp;├ ''&nbsp;&nbsp;└ ');  //格式化的字符
    private $fields array();                                               //字段映射,分类id,上级分类pid,分类名称name,格式化后分类名称fullname
 
    /**
     * 构造函数,对象初始化
     * @param array,object  $model      数组或对象,基于TP3.0的数据表模型名称,若不采用TP,可传递空值。
     * @param array         $field      字段映射,分类cid,上级分类pid,分类名称,格式化后分类名称fullname
     */
 
    public function __construct($model ''$fields array()) {
        if (is_string($model) && (!empty($model))) {
            if (!$this->model = D($model))
                $this->error = $model "模型不存在!";
        }
        if (is_object($model))
            $this->model = &$model;
 
        $this->fields['cid'] = $fields['0'] ? $fields['0'] : 'id';
        $this->fields['pid'] = $fields['1'] ? $fields['1'] : 'pid';
        $this->fields['name'] = $fields['2'] ? $fields['2'] : 'name';
        $this->fields['fullname'] = $fields['3'] ? $fields['3'] : 'fullname';
    }
 
    /**
     * 获取分类信息数据
     * @param array,string  $condition  查询条件
     * @param string        $orderby    排序
     */
    private function _findAllCat($condition$orderby = NULL) {
        $this->rawList = $this->model->where($condition)->order($orderby)->select();
    }
 
    /**
     * 返回给定上级分类$pid的所有同一级子分类
     * @param   int     $pid    传入要查询的pid
     * @return  array           返回结构信息
     */
    public function getChild($pid) {
        $childs array();
        foreach ($this->rawList as $Category) {
            if ($Category[$this->fields['pid']] == $pid){
                $childs[] = $Category;
            }
        }
        return $childs;
    }
 
    /**
     * 递归格式化分类前的字符
     * @param   int     $cid    分类cid
     * @param   string  $space
     */
    private function _searchList($cid = 0, $space "") {
        $childs $this->getChild($cid);
        //下级分类的数组
        //如果没下级分类,结束递归
        if (!($n count($childs))){
            return;
        }
        $m = 1;
        //循环所有的下级分类
        for ($i = 0; $i $n$i++) {
            $pre "";
            $pad "";
            if ($n == $m) {
                $pre $this->icon[2];
            else {
                $pre $this->icon[1];
                $pad $space $this->icon[0] : "";
            }
            $childs[$i][$this->fields['fullname']] = ($space $space $pre "") . $childs[$i][$this->fields['name']];
            $this->formatList[] = $childs[$i];
            $this->_searchList($childs[$i][$this->fields['cid']], $space $pad "&nbsp;&nbsp;"); //递归下一级分类
            $m++;
        }
    }