当前位置:首页 > PHP教程 > php高级应用 > 列表

php无限级评论嵌套实现代码

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-08 10:48:10 浏览: 评论:0 

本文讲的是php无限级评论嵌套实例介绍, 我在设计BB的过程中,也一直在思考是否可以不通过递归来实现无限级分类的结构展现和父子结构查找,因为如果不对这里的算法进行优化后果可能是致命的。

我在设计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类中这块的代码粘贴出来,希望与大家分享下我的思路,也希望大家能够提出更好更有效率的算法。

方法一

  1. /**  
  2.  * 按ID条件从评论数组中递归查找  
  3.  *  
  4.  */ 
  5. function getCommentsFromAryById($commtAry$id)  
  6. {  
  7.  if ( !is_array($commtAry) ) return FALSE;  
  8.  foreach($commtAry as $key=>$value) {  
  9.   if ( $value['id'] == $id ) return $value;  
  10.   if ( isset($value['children']) && is_array($children) ) $this->getCommentsFormAryById($value['children'], $id);  
  11.  }  
  12. }  
  13. /**  
  14.  * 追加 子评论 到 主评论 中,并形成children子项  
  15.  *  
  16.  * @param array $commtAry 原评论数据引用  
  17.  * @param int $parentId 主评论ID  
  18.  * @param array $childrenAry 子评论的值  
  19.  */ 
  20. function addChildenToCommentsAry($commtAry$parentId$childrenAry)  
  21. {  
  22.  if ( !is_array($commtAry) ) return FALSE;  
  23.    
  24.  foreach($commtAry as $key=>$value) {  
  25.   if ( $value['id'] == $parentId ) {  
  26.    $commtAry[$key]['children'][] = $childrenAry;  
  27.    return TRUE;  
  28.   }  
  29.   if ( isset($value['children']) ) $this->addChildenToCommentsAry($commtAry[$key]['children'], $parentId$childrenAry);  
  30.  }  
  31. }  
  32.  $result = $this->BBDM->select($table$column$condition, 0, 1000);  
  33.    
  34.  /* 开始进行嵌套评论结构重组 */ 
  35.  array_shift($result);  
  36.  $count = count($result);  
  37.  $i  = 0;  
  38.  while$i<$count ) {  
  39.   if ( '0' != $result[$i]['parentId'] ) {  
  40.    $this->addChildenToCommentsAry($result$result[$i]['parentId'], $result[$i]);  
  41.    unset($result[$i]);  
  42.   }  
  43.   $i++;  
  44.  }  
  45.  $result = array_values($result);  
  46.  /* 重组结束 */ 

实现方法二

核心代码摘自WordPress

  1. <?php 
  2. $comments = array ( 
  3.   array ( 
  4.     'id' => '3'
  5.     'parent' => '0' 
  6.   ), 
  7.   array ( 
  8.     'id' => '9'
  9.     'parent' => '0' 
  10.   ), 
  11.   array ( 
  12.     'id' => '1'
  13.     'parent' => '3' 
  14.   ), 
  15.   array ( 
  16.     'id' => '2'
  17.     'parent' => '3' 
  18.   ), 
  19.   array ( 
  20.     'id' => '5'
  21.     'parent' => '1' 
  22.   ), 
  23.   array ( 
  24.     'id' => '7'
  25.     'parent' => '1' 
  26.   ) 
  27. ); 
  28. function html5_comment($comment) { 
  29.   echo '<li>'
  30.   echo 'id:'$comment['id'], ' parent:'$comment['parent']; 
  31. function start_el(& $output$comment) { 
  32.   ob_start(); 
  33.   html5_comment($comment); 
  34.   $output .= ob_get_clean(); 
  35. function end_el(& $output) { 
  36.   $output .= "</li><!-- #comment-## -->\n"
  37. function start_lvl(& $output) { 
  38.   $output .= '<ol class="children">' . "\n"
  39. function end_lvl(& $output) { 
  40.   $output .= "</ol><!-- .children -->\n"
  41. function display_element($e, & $children_elements$max_depth$depth, & $output) { 
  42.   $id = $e['id']; 
  43.   start_el($output$e); //当前评论的开始代码 
  44.   if ($max_depth > $depth +1 && isset ($children_elements[$id])) { //如果没超过最大层,并且存在子元素数组 
  45.     foreach ($children_elements[$idas $child) { 
  46.       if (!isset ($newlevel)) { //第一次循环没设置变量$newlevel,所以把$newlevel设为true,并且开始子元素的开始代码;第二次及之后的循环,已经设置了$newlevel,就不会再添加子元素的开始代码。因为同一批循环时兄弟元素,所以只需要一个子元素开始代码,循环内容为并列关系。 
  47.         $newlevel = true; 
  48.         start_lvl($output); 
  49.       } 
  50.       display_element_template($child$children_elements$max_depth$depth +1, $output); //$child作为参数,继续去寻找下级元素 
  51.     } 
  52.     unset ($children_elements[$id]); //用完释放变量,以后就不会重复判断该值了,递归后继续判断剩下的子元素 
  53.   } 
  54.   if (isset ($newlevel) && $newlevel) { //如果前面找到了子元素,这里就要执行子元素的结束代码 
  55.     end_lvl($output); 
  56.   } 
  57.   end_el($output); //当前评论的结束代码 
  58. function display_element_template($e, & $children_elements$max_depth$depth, & $output) { 
  59.   $id = $e['id']; 
  60.   display_element($e$children_elements$max_depth$depth$output); 
  61.   if ($max_depth <= $depth +1 && isset ($children_elements[$id])) { //如果超出最大层级,并且子元素存在的话,以$child为参数继续往下找 
  62.     foreach ($children_elements[$idas $child) { 
  63.       display_element_template($child$children_elements$max_depth$depth$output); 
  64.     } 
  65.     unset ($children_elements[$id]); //用完释放变量 
  66.   } 
  67. function comments_list($comments) { 
  68.   $top_level_elements = array (); 
  69.   $children_elements = array (); 
  70.   foreach ($comments as $e) { 
  71.     if (0 == $e['parent']) { 
  72.       $top_level_elements[] = $e
  73.     } else { 
  74.       $children_elements[$e['parent']][] = $e
  75.     } 
  76.   } 
  77.   $output = ''
  78.   foreach ($top_level_elements as $e) { 
  79.     display_element_template($e$children_elements, 2, 0, $output); 
  80.   } 
  81.   //var_dump($children_elements);//由于每次用完$children_elements后都会释放变量,所以到最后$children_elements为空数组 
  82.   return $output
  83. echo '<ol class="comment-list">', comments_list($comments), '</ol>';

Tags: php无限级评论嵌套

分享到: