Home Backend Development PHP Tutorial PHP unlimited comment nesting implementation code PHP skills

PHP unlimited comment nesting implementation code PHP skills

Jun 27, 2018 pm 05:45 PM

This article talks about the introduction of infinite-level comment nesting examples in PHP. In the process of designing BB, I have been thinking about whether it is possible to realize the structural display of infinite-level classification and parent-child structure search without recursion, because if it is not done here, The consequences of optimizing the algorithm may be fatal

In the process of designing BB, I have been thinking about whether it is possible to achieve infinite classification structure display and parent-child structure search without recursion, because if it is not done here, The consequences of algorithm optimization can be fatal! Just imagine, if an article has 300 comments, according to the normal recursive algorithm, the database must be queried at least 301 times, and this is without any nesting. If there are one or two levels of nesting or the number of comments exceeds 1,000 , then the database doesn’t crash directly?
In fact, PHP's powerful array processing capabilities can already help us solve this problem quickly and conveniently. The following figure shows an infinite-level classified

database structure:

IDparentID newsID commts
108 comments with article ID 8
21 8 replies to comments with ID 1
328 Reply to the comment with ID 2

To display the comment with article number 8 in the front desk in a nested manner, in fact, we only need to query the database once, that is, "SELECT * FROM TABLE WHERE newsID=8" , and leave the later recursive work to the powerful PHP array. The problem that may be involved here is the reorganization of the structural relationship of the array, that is, putting all the comments that stay in the first-level category under their own parentID to form the children item.
Paste the code of this piece of code in the BBComment class below. I hope to share my ideas with you, and hope that everyone can come up with better and more efficient algorithms.

Method one

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

/**

 * 按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<$count ) {

  if ( &#39;0&#39; != $result[$i][&#39;parentId&#39;] ) {

   $this->addChildenToCommentsAry($result, $result[$i][&#39;parentId&#39;], $result[$i]);

   unset($result[$i]);

  }

  $i++;

 }

 $result = array_values($result);

 /* 重组结束 */

Copy after login

Implementation method two

The core code is taken from WordPress

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

<?php

$comments = array (

  array (

    &#39;id&#39; => &#39;3&#39;,

    &#39;parent&#39; => &#39;0&#39;

  ),

  array (

    &#39;id&#39; => &#39;9&#39;,

    &#39;parent&#39; => &#39;0&#39;

  ),

  array (

    &#39;id&#39; => &#39;1&#39;,

    &#39;parent&#39; => &#39;3&#39;

  ),

  array (

    &#39;id&#39; => &#39;2&#39;,

    &#39;parent&#39; => &#39;3&#39;

  ),

  array (

    &#39;id&#39; => &#39;5&#39;,

    &#39;parent&#39; => &#39;1&#39;

  ),

  array (

    &#39;id&#39; => &#39;7&#39;,

    &#39;parent&#39; => &#39;1&#39;

  )

);

function html5_comment($comment) {

  echo &#39;<li>&#39;;

  echo &#39;id:&#39;, $comment[&#39;id&#39;], &#39; parent:&#39;, $comment[&#39;parent&#39;];

}

function start_el(& $output, $comment) {

  ob_start();

  html5_comment($comment);

  $output .= ob_get_clean();

}

function end_el(& $output) {

  $output .= "</li><!-- #comment-## -->\n";

}

function start_lvl(& $output) {

  $output .= &#39;<ol class="children">&#39; . "\n";

}

function end_lvl(& $output) {

  $output .= "</ol><!-- .children -->\n";

}

function display_element($e, & $children_elements, $max_depth, $depth, & $output) {

  $id = $e[&#39;id&#39;];

  start_el($output, $e); //当前评论的开始代码

  if ($max_depth > $depth +1 && isset ($children_elements[$id])) { //如果没超过最大层,并且存在子元素数组

    foreach ($children_elements[$id] as $child) {

      if (!isset ($newlevel)) { //第一次循环没设置变量$newlevel,所以把$newlevel设为true,并且开始子元素的开始代码;第二次及之后的循环,已经设置了$newlevel,就不会再添加子元素的开始代码。因为同一批循环时兄弟元素,所以只需要一个子元素开始代码,循环内容为并列关系。

        $newlevel = true;

        start_lvl($output);

      }

      display_element_template($child, $children_elements, $max_depth, $depth +1, $output); //$child作为参数,继续去寻找下级元素

    }

    unset ($children_elements[$id]); //用完释放变量,以后就不会重复判断该值了,递归后继续判断剩下的子元素

  }

  if (isset ($newlevel) && $newlevel) { //如果前面找到了子元素,这里就要执行子元素的结束代码

    end_lvl($output);

  }

  end_el($output); //当前评论的结束代码

}

function display_element_template($e, & $children_elements, $max_depth, $depth, & $output) {

  $id = $e[&#39;id&#39;];

  display_element($e, $children_elements, $max_depth, $depth, $output);

  if ($max_depth <= $depth +1 && isset ($children_elements[$id])) { //如果超出最大层级,并且子元素存在的话,以$child为参数继续往下找

    foreach ($children_elements[$id] as $child) {

      display_element_template($child, $children_elements, $max_depth, $depth, $output);

    }

    unset ($children_elements[$id]); //用完释放变量

  }

}

function comments_list($comments) {

  $top_level_elements = array ();

  $children_elements = array ();

  foreach ($comments as $e) {

    if (0 == $e[&#39;parent&#39;]) {

      $top_level_elements[] = $e;

    } else {

      $children_elements[$e[&#39;parent&#39;]][] = $e;

    }

  }

  $output = &#39;&#39;;

  foreach ($top_level_elements as $e) {

    display_element_template($e, $children_elements, 2, 0, $output);

  }

  //var_dump($children_elements);//由于每次用完$children_elements后都会释放变量,所以到最后$children_elements为空数组

  return $output;

}

echo &#39;<ol class="comment-list">&#39;, comments_list($comments), &#39;</ol>&#39;;

Copy after login

That’s it for this article. In fact, if you refer to some open source cms, you can also see a lot of good codes. I hope you will support the PHP Chinese website in the future.

Related recommendations:

PHP realizes the addition, deletion, and modification functions of the database and complete code php examples

PHPMAILER realizes PHP development Email function php example

php-app development interface encryption detailed explanation_php skills


##

The above is the detailed content of PHP unlimited comment nesting implementation code PHP skills. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks 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)

Hot Topics

Java Tutorial
1672
14
PHP Tutorial
1276
29
C# Tutorial
1256
24
Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

How do you prevent SQL Injection in PHP? (Prepared statements, PDO) How do you prevent SQL Injection in PHP? (Prepared statements, PDO) Apr 15, 2025 am 12:15 AM

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

See all articles