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

  • Home
  • SEARCH
  • 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 6696635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:21:53+00:00 2026-05-26T06:21:53+00:00

suppose I have a multidimensional array structure: array(parent) array array array(parent) array(parent) …some key

  • 0

suppose I have a multidimensional array structure:

array(parent)
    array
    array
    array(parent)
        array(parent)
            ...some key I'm looking for....
        array
    array
array
array
array
array
array

I iterate over it recursively to find an array that contains some key I’m looking for – this is no problem.

But then I need to walk up the tree and add additional key to all parents (marked by parent). I can’t wrap my head around it. I can easily walk down the tree recursively but I can’t figure out how to walk up. Can someone point me to the right direction?

  • 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-26T06:21:54+00:00Added an answer on May 26, 2026 at 6:21 am

    This is an example that I’ve just wrote just to get the idea.

    NOTE that this will break execution on the first occurrence of the matched value.

    codepad link

    $arr = array(
        array('a','b','c','d'),
        array(61,62,63,64,65),
        array('e','f','g','h'),
        array(6,7,8,9),
        array(1,2,array(1,2,3,4,5,6,7,8),4,5,6,7,8),
        array('i','j','k','l','m'),
    );
    
    function array_walkup( $desired_value, array $array, array $keys=array() ) {
        if (in_array($desired_value, $array)) {
            array_push($keys, array_search($desired_value, $array));
            return $keys;
        }
        foreach($array as $key => $value) {
            if (is_array($value)) {
                $k = $keys;
                $k[] = $key;
                if ($find = array_walkup( $desired_value, $value, $k )) {
                    return $find;
                }
            }
        }
        return false;
    }
    
    $keys = array_walkup(3, $arr);
    
    echo "3 has been found in \$arr[".implode('][', $keys)."]";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a simple multidimensional structure, like this one: somestr<-array(sample.int(2, 120, replace=TRUE), dim=c(4,5,6))
I want to change some values in my multidimension array in PHP. Suppose that
Suppose we have buyers and sellers that are trying to find each other in
Suppose I have a parent class that implements a protocol: @interface GameViewController : UIViewController<GamePrizeDelegate>
Suppose you have 2 different ASP.NET applications in IIS. Also, you have some ASCX
Suppose I have a stringbuilder in C# that does this: StringBuilder sb = new
Suppose I have: Toby Tiny Tory Tily Is there an algorithm that can easily
Suppose I have a table called Companies that has a DepartmentID column. There's also
Suppose you have an array of 1000 random integer numbers and you need to
Suppose you have an array value => timestamp. The values are increasing with the

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.