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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:45:31+00:00 2026-05-24T17:45:31+00:00

I want to ask how to convert an array like below: $arr = array(

  • 0

I want to ask how to convert an array like below:

$arr = array(
    array(
        'id' => 1,
        'name' => 'Home',
        'link_to' => 'home.php',
        'parent' => 0,
        'level' => 1
    ),
    array(
        'id' => 2,
        'name' => 'About',
        'link_to' => 'about.php',
        'parent' => 0,
        'level' => 1
    ),
    array(
        'id' => 3,
        'name' => 'About Me',
        'link_to' => 'about-me.php',
        'parent' => 2,
        'level' => 2
    ),
    array(
        'id' => 4,
        'name' => 'About Us',
        'link_to' => 'about-us.php',
        'parent' => 2,
        'level' => 2
    ),
    array(
        'id' => 5,
        'name' => 'Contact Us',
        'link_to' => 'contact-us.php',
        'parent' => 4,
        'level' => 3
    ),
    array(
        'id' => 6,
        'name' => 'Blog',
        'link_to' => 'blog.php',
        'parent' => 0,
        'level' => 1
    ),
);

into this one:

$result = array(
    'Home',
    'About' => array(
        'About Me',
        'About Us' => array(
            'Contact Us'
        )
    ),
    'Blog'
);

there are element ‘parent’ id which can tell the parent array ( 0 = root) and there are also element ‘level’.

I need that kind of array so I can create list using ul() function from codeigniter helper.

  • 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-24T17:45:33+00:00Added an answer on May 24, 2026 at 5:45 pm

    i had to do something similar to create a tree from data rows.

    So, you have to work with references, it is easier than others ways.

    The next code arrive to something similar of what you want (i think it’s better structure if you makes changes later)

    <?php
    
        $arr = array(
            array(
                'id' => 1,
                'name' => 'Home',
                'link_to' => 'home.php',
                'parent' => 0,
                'level' => 1
            ),
            array(
                'id' => 2,
                'name' => 'About',
                'link_to' => 'about.php',
                'parent' => 0,
                'level' => 1
            ),
            array(
                'id' => 3,
                'name' => 'About Me',
                'link_to' => 'about-me.php',
                'parent' => 2,
                'level' => 2
            ),
            array(
                'id' => 4,
                'name' => 'About Us',
                'link_to' => 'about-us.php',
                'parent' => 2,
                'level' => 2
            ),
            array(
                'id' => 5,
                'name' => 'Contact Us',
                'link_to' => 'contact-us.php',
                'parent' => 4,
                'level' => 3
            ),
            array(
                'id' => 6,
                'name' => 'Blog',
                'link_to' => 'blog.php',
                'parent' => 0,
                'level' => 1
            ),
        );
    
    
        $refs = array();
    
        foreach($arr as &$item) {
            $item['children'] = array();
            $refs[$item['id']] = $item;
        }
    
        unset($item); // To delete the reference
    
        // We define a ROOT that is the top of each elements
        $refs[0] = array(
            'id' => 0,
            'children' => array()
        );
    
        foreach($arr as $item) {
            if($item['id'] > 0) {
                $refs[$item['parent']]['children'][] = &$refs[$item['id']];
            }
        }
    
        $result = $refs[0];
    
        unset($refs); // To delete references
    
        var_dump($result);
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to ask for assistance on how to convert the code below
i want ask some question about asp.net mvc Is static constructor will init every
I want to ask a question about how you would approach a simple object-oriented
i want to ask a question about how to do paging in ASP.net coding
I want to ask a question about the objective C. I used to ask
I have an NSString like @Hello World and want to convert that into an
hihi i have a question that i want to ask about c# and window
I just want to ask how to convert the number to String. What I
I want to ask a question about Java. I have use the URLConnection in
I want to ask that is there a way through which I can convert

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.