Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3357092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:35:31+00:00 2026-05-18T02:35:31+00:00

I have a menu structure (Drupal) that contains elements representing a menu link. If

  • 0

I have a menu structure (Drupal) that contains elements representing a menu link. If the menu has a child menu (is the parent of a submenu) it has an array key ‘below’ with a menu item inside with the same structure. In theory this menu could be infinitely deep and the only way that I know how to go through each level is by create a new loop on the item if ‘below’ has anything in it. I know there has to be a more elegant and dynamic way to deal with this. I’m not really looking for a Drupal specific answer as this problem has come up before and I’ve just hacked it together. Thanks for reading!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T02:35:32+00:00Added an answer on May 18, 2026 at 2:35 am

    Without an example of the kind of data you’re working with it’s difficult to give an exact implementation, but the general class of problems you describe is one that can usually be solved with recursion – a function that calls itself.

    <?php
    function deepPrintArr (array $arr)
    {
        $output = '';
        foreach ($arr as $elem)
        {
            if (is_array $elem)
            {
                $output .= deepPrintArr ($elem);
            }
            else
            {
                $output .= "<p>$elem</p>\n";
            }
        }
        return ($output);
    }
    
    echo (deepPrintArr ($some_deeply_nested_array));
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery menu that has so many entries that it extends further
I have this menu structure that is used to navigate through content slider panels.
I have a menu structure that is supposed to highlight each item as it
I have a Menu and Submenu structure in Silverlight, and I want the submenu
I ahve a menu structure that uses UL and LI elements to drop down
I have a menu div that I want to slide down so it's always
I have a menu of product brands that I want to split over 4
I have a (derived) Menu control, that displays a rather large list of items
I have a database menu structure which I would like to add to the
Hey Guys, i have created the following Menu Structure: <div id=menu> <ul> <li><a href=#>Main

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.