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:[email protected] * 使用方法見: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) && (!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 . " "); //遞回下一級分類 $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 (empty($data)) return false; return $this->model->data($data)->add(); } /** * 修改分類 * @param array $data 一維陣列,$data需要包含要修改的分類cid。 * @return boolean 組修改成功,返回相應的分類ID,修改失敗,返回FALSE; */ public function edit($data) { if (empty($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 (empty($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 = !empty($cid) ? intval($cid) : 0; if (empty($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 CommonHelperCategory;category_add.html是檢視檔案,用來演示如何在模板呼叫無限分類。
go_category.sql是分類表資料庫檔案,僅用來參考,分類表的核心欄位有id:欄目id,title:欄目名,parent_id:父級欄目id,is_show:是否在前台顯示, sort:前台排序。
以上就是PHP之Category類庫 無限分類的詳細內容,更多請關注TW511.COM其它相關文章!