-
PHP之Category类库 无限分类
Category类库 无限分类
以下是使用该类库的方法
- 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显示参考。
效果如图:
以下是类库完整源码:
- <?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(' │', ' ├ ', ' └ '); //格式化的字符
- 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) && (!emptyempty($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 . " "); //递归下一级分类
- $m++;
- }
- }
- /**
- * 不采用数据模型时,可以从外部传递数据,得到递归格式化分类
- * @param array,string $condition 条件
- * @param int $cid 起始分类
- * @param string $orderby 排序
- * @return array 返回结构信息
- */
- public function getList($condition = NuLL, $cid = 0, $orderby = NuLL) {
- unset($this->rawList, $this->formatList);
- $this->_findAllCat($condition, $orderby);
- $this->_searchList($cid);
- return $this->formatList;
- }
- /**
- * 获取结构
- * @param array $data 二维数组数据
- * @param int $cid 起始分类
- * @return array 递归格式化分类数组
- */
- public function getTree($data, $cid = 0) {
- unset($this->rawList, $this->formatList);
- $this->rawList = $data;
- $this->_searchList($cid);
- return $this->formatList;
- }
- /**
- * 获取错误信息
- * @return string 错误信息字符串
- */
- public function getError() {
- return $this->error;
- }
- /**
- * 检查分类参数$cid,是否为空
- * @param int $cid 起始分类
- * @return boolean 递归格式化分类数组
- */
- private function _checkCatID($cid) {
- if (intval($cid)) {
- return true;
- } else {
- $this->error = "参数分类ID为空或者无效!";
- return false;
- }
- }
- /**
- * 检查分类参数$cid,是否为空
- * @param int $cid 分类cid
- */
- private function _searchPath($cid) {
- //检查参数
- if (!$this->_checkCatID($cid))
- return false;
- $rs = $this->model->find($cid); //初始化对象,查找上级Id;
- $this->formatList[] = $rs; //保存结果
- $this->_searchPath($rs[$this->fields['pid']]);
- }
- /**
- * 查询给定分类cid的路径
- * @param int $cid 分类cid
- * @return array 数组
- */
- public function getPath($cid) {
- unset($this->rawList, $this->formatList);
- $this->_searchPath($cid); //查询分类路径
- return array_reverse($this->formatList);
- }
- /**
- * 添加分类
- * @param array $data 一维数组,要添加的数据,$data需要包含上级分类ID。
- * @return boolean 添加成功,返回相应的分类ID,添加失败,返回FALSE;
- */
- public function add($data) {
- if (emptyempty($data))
- return false;
- return $this->model->data($data)->add();
- }
- /**
- * 修改分类
- * @param array $data 一维数组,$data需要包含要修改的分类cid。
- * @return boolean 组修改成功,返回相应的分类ID,修改失败,返回FALSE;
- */
- public function edit($data) {
- if (emptyempty($data))
- return false;
- return $this->model->data($data)->save();
- }
- /**
- * 删除分类
- * @param int $cid 分类cid
- * @return boolean 删除成功,返回相应的分类ID,删除失败,返回FALSE
- */
- public function del($cid) {
- $cid = intval($cid);
- if (emptyempty($cid))
- return false;
- $conditon[$this->fields['cid']] = $cid;
- return $this->model->where($conditon)->delete();
- }
- /**
- * 删除分类
- * @param int $cid 分类cid
- * @return boolean 删除成功,返回相应的分类ID及所有子ID 数组,返回FALSE
- */
- public function getIdArr($cid){
- $cid = !emptyempty($cid) ? intval($cid) : 0;
- if (emptyempty($cid)) return false;
- $list = $this->getList($condition = NuLL,$cid, $orderby = NuLL);
- foreach($list as $val){
- $idArr[] = $val[$this->fields['cid']];
- }
- unset($list);
- $idArr[] = $cid;
- return $idArr;
- }
- }
- ?>
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:前台排序。
出处:http://www.phpfensi.com/php/20220620/21106.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式