"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How can recursion be used to generate a nested menu tree from a database with parent categories?

How can recursion be used to generate a nested menu tree from a database with parent categories?

Published on 2024-11-07
Browse:282

How can recursion be used to generate a nested menu tree from a database with parent categories?

Recursion for Menu Tree Generation

In your situation, you have a database structure where categories have a 'root' field indicating their parent category. The HTML output you desire involves nested lists representing the category hierarchy. To achieve this, a recursive PHP function can be employed.

Here's an example function:

function recurse($categories, $parent = null, $level = 0) {
    $ret = '
    '; foreach ($categories as $index => $category) { if ($category['root'] == $parent) { $ret .= '
  • ' . $category['name'] . '

    '; $ret .= $this->recurse($categories, $category['id'], $level 1); $ret .= '
  • '; } } return $ret . '
'; }

This function assumes that root categories have a 'root' field with a null value. It iterates through the categories, identifies child categories based on their 'root' field, and constructs the HTML using nested lists.

To use this function:

  1. Query your database for a multi-dimensional array of categories.
  2. Call the recurse function with the array of categories and null as the parent parameter.
  3. Assign the returned value to a variable (e.g., $Tree).
  4. Echo the $Tree variable to display the nested menu tree.

Optionally, you can modify the function to avoid empty lists by checking if the category has child categories before creating the list:

function recurse($categories, $parent = null, $level = 0) {
    $ret = '
    '; foreach ($categories as $index => $category) { if ($category['root'] == $parent) { $ret .= '
  • ' . $category['name'] . '

    '; $sub = $this->recurse($categories, $category['id'], $level 1); if ($sub != '
      ') { $ret .= $sub; } $ret .= '
    • '; } } return $ret . '
    '; }

    This modified function will only create lists if the category has at least one child.

    Latest tutorial More>

    Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

    Copyright© 2022 湘ICP备2022001581号-3