1、数据库通过设置父类ID来进行唯一索引,然后使用函数的递归调用实现无限分类;
2、数据库设计通过特定格式进行排列,然后使用mysql查询关键函数:concat,程序实现比较简单,首先我们假设有这样的一个三级分类,新闻→PHP新闻→PHP6.0出来了.
如果我们要查找“PHP6.0出来了”这条新闻,我们先点击新闻,然后再点击PHP新闻,就可以查出来了,也就是说我们可以通过祖父类一级一级地往下找,反过来我们只要知道一个子类的父类,就可以把它查找出来了,这样我们在设计数据库时就可以多设计一个父类id的字段就可以实现无限分类的功能了.
数据库代码如下:
- //我们建一个表"class"
- CREATE TABLE `class` (
- `id` int(11) NOT NULL auto_increment COMMENT '分类id',
- `f_id` int(11) NOT NULL COMMENT '父id',
- `name` varchar(25) collate gbk_bin NOT NULL COMMENT '分类名称',
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=gbk COLLATE=gbk_bin AUTO_INCREMENT=1 ;
首先我们往数据库里插入‘新闻’这个大分类,因为‘新闻’是最大分类,上面没有父类了,所以我把它的f_id设置为0.
INSERT INTO `class` (`id`, `f_id`, `name`) VALUES(1, 0, '新闻');//id这个字段是自动增长的,可以不写值.
然后我们再往数据库里插入‘PHP新闻’这个分类,它的父类‘新闻’的id是1,所以它的f_id设置为1。
INSERT INTO `class` (`id`, `f_id`, `name`) VALUES(2, 1, 'PHP新闻');
然后我们再往数据库里插入‘PHP6.0出来了’这个分类,它的父类‘PHP新闻’的id是2,所以它的f_id设置为2。
INSERT INTO `class` (`id`, `f_id`, `name`) VALUES(3, 2, 'PHP6.0出来了');
同理,我们可以这样一直往下插入分类,也就达到了无限分类.
我们可以发现插入一个分类的原则关键是找到这个分类的父类的id,然后作为这个分类的f_id字段的值.
假设要插入跟‘新闻’同一个级别的分类‘技术’,也就是说它也是最大分类,上面没有父类了,那么它的f_id也设置为0;
INSERT INTO `class` (`id`, `f_id`, `name`) VALUES(4, 0, '技术');
在‘技术’下面又有一个分类‘PHP技术’,那么我们怎么插入呢,首先找到‘PHP技术’的父类‘技术’的id,然后作为自己的f_id字段的值.
INSERT INTO `class` (`id`, `f_id`, `name`) VALUES(5, 4, 'PHP技术');
看到这里,想必大家应该都明白怎么往数据库里插入各个分类了,就不再举例了,我们已经知道如何往数据库里插入各个分类了,那又如何把各个分类罗列出来呢?
php实例代码如下:
- <?php
- header("Content-type:text/html;charset=utf-8");
- $db=new mysqli("localhost","root","","news_php100") ;
- if(mysqli_connect_errno()){
- echo "链接失败:".mysqli_connect_error();
- exit(); }
- $db->query("set names utf8");
- $result=$db->query("select name from class where f_id=0");
- while($row=$result->fetch_assoc()){
- echo $row['name']."<br>";
- }
-
- $result=$db->query("select * from class where f_id=1");
- while($row=$result->fetch_assoc()){
- echo $row['name']."
- ";
- }
-
-
-
- $result=$db->query("select * from class");
- while($row=$result->fetch_assoc()){
- $arr[]=array($row[id],$row[f_id],$row[name]);
- }
- function fenlei($f_id=0){
- global $arr;
- for($i=0;$i<count($arr);$i++){
- if($arr[$i][1]==$f_id){
- echo $arr[$i][2]."<br>";
- fenlei($arr[$i][0]);
- }
- }
- }
- ?>
三个字段id,parentid,name,算法也很简单递归,以前用递归的时候很傻,应该说极傻,因为在递归中通过查询数据表来获得子类的所有,最近开窍了,想到了一个地球人都能想得到的方法,下面是代码,一个class,代码如下:
- <?php
- class Tree {
-
-
-
-
-
- var $arr;
-
-
-
-
-
-
-
-
-
-
-
-
- var $tree = array();
-
-
-
-
- var $deep = 1;
-
-
-
-
-
- var $icon = array(‘│’,'├’,'└’);
-
-
-
-
-
-
- function getTree($rootid = 0,$add = ”,$parent_end =true){
- $is_top = 1;
- $child_arr = $this->getChild($rootid);
- if(is_array($child_arr)){
- $cnt = count($child_arr);
- foreach($child_arr as $key => $child){
- $cid = $child['id'];
- $child_child = $this->getChild($cid);
- if($this->deep >1){
- if($is_top == 1 && $this->deep > 1){
- $space = $this->icon[1];
- if(!$parent_end)
- $add .= $this->icon[0];
- else $add .= ‘ ’;
- }
-
- if($is_top == $cnt){
- $space = $this->icon[2];
- $parent_end = true;
- }else {
- $space = $this->icon[1];
- $parent_end = false;
- }
- }
- $this->tree[] = array(‘spacer’=>$add.$k.$space,
- ‘name’=>$child['name'],
- ‘id’=>$cid
- );
- $is_top++;
-
- $this->deep++;
- if($this->getChild($cid))
- $this->getTree($cid,$add,$parent_end);
- $this->deep–;
-
- }
-
- }
- return $this->tree;
- }
-
-
-
-
-
- function getChild($root = 0){
-
- $a = $child = array();
- foreach($this->arr as $id=>$a){
- if($a['parentid'] == $root){
- $child[$a['id']] = $a;
- }
- }
- return $child?$child:false;
-
- }
-
-
-
-
- function setArr($arr = array()){
- $this->arr = $arr;
- }
- }
- ?>
通过一次查询把结构保存进一个数组,再数组进行递归运算,无疑极大的提高了程序运行效率,使用代码很简单. |