Table of Contents
php+mysql实现无限级分类,phpmysql无限级
Home php教程 php手册 php+mysql实现无限级分类,phpmysql无限级

php+mysql实现无限级分类,phpmysql无限级

Jun 13, 2016 am 08:51 AM
mysql php

php+mysql实现无限级分类,phpmysql无限级

项目思路分析:一个PHP项目要用到分类,但不确定分几级,所以就想做成无限级分类。
一开始想是按以前一样,数据库建4个值,如下:
id: 自增   |   pid: 父类ID   |  xid: 排序ID   |  classname: 分类名称
后来想到这种在读取数据时和修改时比较不方便,而且在产品读取时尤其不便,于时改成了以下的方案:
在Mysql的表中新增了一个字段,现数据库如下:
表名 w_faqclass:   id: 自增   |   pid: 父类ID   |  xid: 排序ID   |  classname: 分类名称  |  rank:  等级
定义:
一级分类,pid 为 0 ,rank 为"/"
二级分类,pid 为 一级分类的id,rank 为"/一级分类的id/"
三级分类,pid 为 二级分类的id,rank 为"/一级分类的id/二级分类的id/"
依此类推...
1. 基础函数    

/*
利于递归返回已经进行了排序的无限级分类的数组
不想用递归的话也可以用 like 来获取后再进行排序,我比较懒,就不写那种获取方式了,其实用 like 更好,推荐用那种方式
$datatable    : 数据表名
$startid    : 开始父类ID
$wheretColumns  :父类列名
$xColumns    : 排序列名
$xtype      : 排序方式
$returnArr    : 返回数组
*/
function ReadClass($datatable,$startid,$xtype,$returnArr){
  $db    =  $datatable;
  $sid  =  $startid;
  $xtype  =  $xtype;
  $lu    =  $returnArr;
   
  $sql  =  "select * from `".$db."` where `pid`='".$sid."' order by xid ".$xtype.";";
  $cresult=  mysql_query($sql);
  if(mysql_num_rows($cresult)>0){
    while($rs = mysql_fetch_array($cresult)){
      $lunum = count($lu);
      $lu[$lunum]['id']    =  $rs['id'];
      $lu[$lunum]['pid']    =  $rs['pid'];
      $lu[$lunum]['rank']    =  $rs['rank'];
      $lu[$lunum]['classname']=  $rs['classname'];
      $lu[$lunum]['xid']    =  $rs['xid'];
       
      $lu            =  ReadClass($db,$rs['id'],$xtype,$lu);
    }
  }
  return $lu;
}
/*
查询某表中的某个值,只会返回一个值
$datatable    : 数据表名
$wherevalue    : 条件值
$selectColumns  : 查询列名
$whereColumns  : 条件列
*/
function SelectValue($datatable,$wherevalue,$selectColumns,$whereColumns){
  $sql  =  "select `".$selectColumns."` from `".$datatable."` where `".$whereColumns."`='".$wherevalue."';";
  $result  =  mysql_query($sql);
  while($rs = mysql_fetch_array($result)){
    return $rs[$selectColumns];
  }
}
Copy after login

2. 增加分类 (直接做到了select中用于选择 )

<&#63;php
  $classArr = ReadClass('w_faqclass','0','asc',array());
  $canum = count($classArr);
   
  echo "<select name='pid'>";
  echo "<option value='0'>主分类</option>";
  for($i=0; $i<$canum; $i++){
    $rankArr = split("/",$classArr[$i]['rank']);
    $ranknum = count($rankArr);
    $t = "";
    for($j=1; $j<$ranknum; $j++){ //用于格式化显示子类
      $t .= "├┄┄";
    }
    echo "<option value='".$classArr[$i]['id']."'>".$t.$classArr[$i]['classname']."</option>";
  }
  echo "</select>"
&#63;> 
 
//保存时的操作,需要判断是否为主分类,当为主类时, rank 值设为 /
//查询父类的 rank 值,用父类的 rank 加上 父类的 id 值
if($pid != 0){
  $pidrank = SelectValue('w_faqclass',$pid,'rank','id'); 
  $rank = $pidrank.$pid."/";
}else{
  $rank = "/";  
}
Copy after login

3. 修改分类

<&#63;php
  /*
  注意,因为是修改,在此页面加载时已将当前分类的所有值读出来了,对应是:$pid,$rank
  */
  $classArr = ReadClass('w_faqclass','0','asc',array());
  $canum = count($classArr);
  echo "<select name='pid'>";
  echo "<option value='0'>主分类</option>";
 
  for($i=0; $i<$canum; $i++){
    // 因为是修改,所以当前分类不能选择自身或自身以下的分类,多加个 rank 值的优势啊,哈哈,以前做单pid值的时候这里还得用次递归查询
    while($ids == $classArr[$i]['id'] || strstr($classArr[$i]['rank'],$rank.$ids."/")){
      $i++;
    }
     
    $rankArr = split("/",$classArr[$i]['rank']);
    $ranknum = count($rankArr);
    $t = "";
    for($j=1; $j<$ranknum; $j++){
      $t .= "├┄┄";
    }
    if($pid == $classArr[$i]['id']){
      $selected = "selected";  
    }else{
      $selected = "";
    }
    echo "<option value='".$classArr[$i]['id']."' ".$selected.">".$t.$classArr[$i]['classname']."</option>";
  }
  echo "</select>"
&#63;>
 
// 保存时的操作
// 要做到改动时该分类的所有子分类rank值都需要变动,选取得原来子分类通用到的 rank 值,也就是该分类的 rank值加上它的ID值
// 利于 mysql 的REPLACE语句进行替换
if($pid != 0){
  $pidrank = SelectValue('w_faqclass',$pid,'rank','id');
  $rank = $pidrank.$pid."/";
}else{
  $rank = "/";  
}
$orank = SelectValue('w_faqclass',$ids,'rank','id').$ids."/";
$nrank = $rank.$ids."/";
   
mysql_query("UPDATE `w_faqclass` SET rank = REPLACE(rank,'".$orank."','".$nrank."');");
mysql_query("UPDATE `w_faqclass` SET `classname`='".$classname."',`xid`='".$xid."',`pid`='".$pid."',`rank`='".$rank."' where `id`='".$ids."';");
Copy after login

4. 删除和查询就简单了,这个就不赘述了,提到一点,记得在删除前确认下该类下面是否存在子类就可以了。

$zid = SelectValue('w_faqclass',$ids,'id','pid');
 
if($zid>0){
  ...
}
Copy after login

以上就是php+mysql实现无限极分类的方法,希望对大家的学习有所帮助。

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Top 10 PHP CMS Platforms For Developers in 2024 Top 10 PHP CMS Platforms For Developers in 2024 Dec 05, 2024 am 10:29 AM

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

How to Add Elements to the End of an Array in PHP How to Add Elements to the End of an Array in PHP Feb 07, 2025 am 11:17 AM

Arrays are linear data structures used to process data in programming. Sometimes when we are processing arrays we need to add new elements to the existing array. In this article, we will discuss several ways to add elements to the end of an array in PHP, with code examples, output, and time and space complexity analysis for each method. Here are the different ways to add elements to an array: Use square brackets [] In PHP, the way to add elements to the end of an array is to use square brackets []. This syntax only works in cases where we want to add only a single element. The following is the syntax: $array[] = value; Example

See all articles