Home > php教程 > PHP源码 > php无限级评论嵌套实例介绍

php无限级评论嵌套实例介绍

WBOY
Release: 2016-06-08 17:23:38
Original
1747 people have browsed it

无限级分类,让人兴奋但却又让人有些不知所措的数据结构。让人兴奋,是因为这种结构实在是太实用太方便了;让人不知所措,是因为这种结构的前台数据结构展现往往会在递归的时候浪费非常多珍贵的性能资源。

<script>ec(2);</script>

我在设计BB的过程中,也一直在思考是否可以不通过递归来实现无限级分类的结构展现和父子结构查找,因为如果不对这里的算法进行优化后果可能是致命的!试想一下,一篇文章如果评论数为300,按正常的递归算法,至少就得查询数据库301次,而且还是在没有任何嵌套的情况下,如果有过一两级嵌套或者评论数过1000,那数据库不是直接宕掉?
而实际上,PHP强大的数组处理能力已经能帮助我们快速方便的解决这个问题。下图为一个无限级分类的

数据库结构:

 IDparentID newsID commts
 108文章ID为8的评论
 21 8对ID为1的评论的回复
 328对ID为2的评论的回复

要在前台嵌套式的展现文章编号8的评论,其实我们只用查询一次数据库,即“SELECT * FROM TABLE WHERE newsID=8”,而把后期的递归工作交给强大的PHP数组来完成。这里可能涉及的问题就是数组的结构关系的重组,即将所有停留在一级分类上的评论全部放到自己的parentID下,形成children项。
下面将BBComment类中这块的代码粘贴出来,希望与大家分享下我的思路,也希望大家能够提出更好更有效率的算法。

 代码如下 复制代码


/** 
 * 按ID条件从评论数组中递归查找 
 * 
 */ 
function getCommentsFromAryById($commtAry, $id)  
{  
    if ( !is_array($commtAry) ) return FALSE;  
    foreach($commtAry as $key=>$value) {  
        if ( $value['id'] == $id ) return $value;  
        if ( isset($value['children']) && is_array($children) ) $this->getCommentsFormAryById($value['children'], $id);  
    }  
}  
/** 
 * 追加 子评论 到 主评论 中,并形成children子项 
 * 
 * @param array $commtAry 原评论数据引用 
 * @param int $parentId 主评论ID 
 * @param array $childrenAry 子评论的值 
 */ 
function addChildenToCommentsAry($commtAry, $parentId, $childrenAry)  
{  
    if ( !is_array($commtAry) ) return FALSE;  
 
    foreach($commtAry as $key=>$value) {  
        if ( $value['id'] == $parentId ) {  
            $commtAry[$key]['children'][] = $childrenAry;  
            return TRUE;  
        }  
        if ( isset($value['children']) ) $this->addChildenToCommentsAry($commtAry[$key]['children'], $parentId, $childrenAry);  
    }  
}  
    $result = $this->BBDM->select($table, $column, $condition, 0, 1000);  
 
    /* 开始进行嵌套评论结构重组 */ 
    array_shift($result);  
    $count = count($result);  
    $i     = 0;  
    while( $i         if ( '0' != $result[$i]['parentId'] ) {  
            $this->addChildenToCommentsAry($result, $result[$i]['parentId'], $result[$i]);  
            unset($result[$i]);  
        }  
        $i++;  
    }  
    $result = array_values($result);  
    /* 重组结束 */ 

Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template