Home > Database > Mysql Tutorial > body text

How can I efficiently generate an HTML menu tree from hierarchical data stored in a MySQL database using a recursive PHP function?

Mary-Kate Olsen
Release: 2024-10-29 18:34:02
Original
208 people have browsed it

How can I efficiently generate an HTML menu tree from hierarchical data stored in a MySQL database using a recursive PHP function?

Echoing Menu Tree with Recursive Function

In the scenario where you have a MySQL database with hierarchical data organized under various roots, you may encounter the need to generate an HTML menu tree replicating this structure. This involves displaying the root categories and their subcategories recursively.

To accomplish this, a recursive PHP function can be employed to traverse the database records and construct the HTML markup. The function requires the categories data and optionally a parent identifier and depth level.

The function iterates through the categories, searching for elements that match the specified parent. If a match is found, it generates an

  • element with an anchor tag containing the category name. It then recursively calls itself to fetch and append child categories if any. This process continues until all levels of the hierarchy have been traversed.

    The following revised PHP function incorporates optimizations to prevent empty

      elements from appearing when there are no child categories:

      <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

      To improve performance, it is advisable to query the database to include a field indicating the number of child categories for each category. This information can be utilized to determine whether to recursively traverse child categories:

      <code class="php">select Category.*, (select count(distinct c1.id) from Category as c1 where c1.root = Category.id) as ChildCount from Category</code>
      Copy after login

      With this enhancement, the recurse function can be modified accordingly:

      <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>';
            if ($category['ChildCount'] > 0) {
              $ret .= $this->recurse($categories, $category['id'], $level + 1);
            }
            $ret .= '</li>';
          }
        }
        return $ret . '</ul>';
      }</code>
      Copy after login

      The above is the detailed content of How can I efficiently generate an HTML menu tree from hierarchical data stored in a MySQL database using a recursive PHP function?. 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