Home > Database > Mysql Tutorial > body text

How to Create an Echo Menu Tree Using a Recursive Function in PHP?

Susan Sarandon
Release: 2024-10-27 06:58:29
Original
895 people have browsed it

 How to Create an Echo Menu Tree Using a Recursive Function in PHP?

Echo Menu Tree with Recursive Function

Problem Overview

Creating a recursive function to traverse a hierarchical menu structure stored in a database and output it in HTML can be challenging. Given a table with categories and their parent categories, the task is to generate a menu tree that visually represents the hierarchy.

Recursive Function Approach

To solve this problem, a recursive function is needed. The idea is to start with the root category, find its children, and recursively call the function on each child, building up the HTML output as we go.

PHP Function Implementation

Here is a possible implementation of the PHP function:

<code class="php">function recurse($categories, $parent = null, $level = 0)
{
    $ret = '<ul>';
    foreach($categories as $index => $category)
    {
        if($category['root'] == $parent)
        {
            $ret .= '<li><a href="#"><p class="Tier' . $level . '">' . $category['name'] . '</p></a>';
            $ret .= $this->recurse($categories, $category['id'], $level+1);
            $ret .= '</li>';
        }
    }
    return $ret . '</ul>';
}</code>
Copy after login
  1. It takes three parameters: $categories (an array of category data), $parent (the current parent category ID), and $level (which determines the level of indentation).
  2. It iterates through the categories and checks if their root matches the provided parent ID.
  3. If there is a match, it output the category name, wrapped in an li and a element with an appropriate Tier class for indentation.
  4. It then recursively calls itself with the next level of categories, setting the new parent ID and incrementing the level.

Usage

To use the function:

  1. Query the database to retrieve all categories.
  2. Call recurse() with the category data as the first parameter.
  3. Echo the returned HTML output.

Handling Empty Child Categories

The initial implementation may produce empty

    elements for categories with no children. To prevent this, you can modify the function like so:

    <code class="php">function recurse($categories, $parent = null, $level = 0)
    {
        $ret = '<ul>';
        foreach($categories as $index => $category)
        {
            if($category['root'] == $parent)
            {
                $ret .= '<li><a href="#"><p class="Tier' . $level . '">' . $category['name'] . '</p></a>';
                $sub = $this->recurse($categories, $category['id'], $level+1);
                if($sub != '<ul></ul>')
                    $ret .= $sub;
                $ret .= '</li>';
            }
        }
        return $ret . '</ul>';
    }</code>
    Copy after login

    This modification ensures that only categories with children have

      elements.

      Alternatively, you can add a child count to each category and only include the

        if the child count is greater than zero.

        The above is the detailed content of How to Create an Echo Menu Tree Using a Recursive Function in PHP?. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!