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 8158375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T17:34:49+00:00 2026-06-06T17:34:49+00:00

How can I return multidimensional array keys in tree format in PHP? For example,

  • 0

How can I return multidimensional array keys in tree format in PHP?

For example, if I have the following array:

$array = array ( 
    array (
        'name' => 'A', 
        'product' => array (
            'qty' => 1,
            'brand' => 'Tim'
        ), 
        'goods' => array (
            'qty' => 2
        ), 
        'brand' => 'Lin'
    ),
    array (
        'name' => 'B', 
        'product' => array (
            'qty' => 6,
            'brand' => 'Coff'
        ),
        'goods' => array (
            'qty' => 4
        ), 
        'brand' => 'Ji'
    )
);

How can I get a result like the following — including no repeating of keys:

-name
-product
--qty
--brand
-goods
--qty
--brand
  • 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-06-06T17:34:51+00:00Added an answer on June 6, 2026 at 5:34 pm

    With an unlimited depth you need a recursive function. I suppose you have the parents in $names and the childs in $children:

    function render_select($root=0, $level=-1) 
    {
        global $names, $children;
        if ($root != 0)
           echo '<option>' . strrep(' ', $level) . $names[$root] . '</option>';
        foreach ($children[$root] as $child)
           render_select($child, $level+1);
    }
    

    This functions use useful because you can feed it with 2 variables. The other answere requires a multidimensional array.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following multidimensional $array: Array ( [0] => Array ( [domain] =>
I have a multidimensional array in PHP and want to be able to search
How can return a variable from a thead (I have the threads handle too).
I have an Ajax request that can return more than one valid value, so
I have a WCF service that can return large amount of data depending on
I have a multidimensional array. The primary array is an array of [publicationID][publication_name][ownderID][owner_name] What
I have a multidimensional array that looks something like this: ourThing = array( 'id'
Using System, how can I dump the contents of a multidimensional array to the
I basically want to use str_replace() all values of a multidimensional array. I can't
Sure, you can have nested lists to represent multidimensional arrays, but that seems costly...

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.