Jump to content

function to return key(s) for value in a multi-dimensional array


davepass

Recommended Posts

I'd like to be able to find the entire key for a given value in a multi-dimensional array.

So assuming an array named $structure with the following output:

Array
(
[0] => Array
(
[path] => ../content/about
[name] => about
[kind] => directory
[content] =>
)

[1] => Array
(
[path] => ../content/contact
[name] => contact
[kind] => directory
[content] =>
)

[2] => Array
(
[path] => ../content/resources
[name] => resources
[kind] => directory
[content] =>
)
}

For example, I'd like to be able to feed the function the array name ($structure) and a value of "resources" and have it return "[2][name]".


Here is what I have so far and I'm pretty stumped:

[code]function getNavItemIndex($navItem, $haystack)
{
    $arrStr = "";
    foreach ($haystack as $k => $v)
    {
        if(is_array($v))
        {    
            getNavItemIndex($navItem, $v);
        }
        else
        {
             if ($v == $navItem)
             {
                $thisIndex = $k;
                break;
             }
        }
    }
    return $thisIndex;
}[/code]
I call the function on itself recursively because I'll never know how deep the array goes. So I just keep going through each one until the value is a string and not an array.

I've got 2 problems:

1. when I get a value for $thisIndex, it only reflects the key of the last array looped through. In the case of the example above it would be "name" rather than "[2][name]".

2. Even if #1 were not an issue, the function always returns an empty string, even through $thisIndex can be printed out within the function... scope issue??


Any help would be appreciated!
Link to comment
Share on other sites

[!--quoteo(post=354124:date=Mar 12 2006, 03:04 AM:name=keeB)--][div class=\'quotetop\']QUOTE(keeB @ Mar 12 2006, 03:04 AM) [snapback]354124[/snapback][/div][div class=\'quotemain\'][!--quotec--]
both of the issues are scope issues... in each iteration you need to 'store' each value or 'do' something with it.
[/quote]


I'm sorry. I don't really follow what you mean. Could you elaborate?
Link to comment
Share on other sites

The problem is that you arent handling the case of when youve found the parent array. Youre only looking for correct values. You have to be able to single all the way up the stack that its succeeded.


[code]
function getNavItemIndex($navItem, $haystack)
{
   $thisIndex = false; //default case
   foreach ($haystack as $k => $v)
   {
      if (is_array($v))
      {
         $recurNdx = getNavItemIndex($navItem, $v);
         if ($recurNdx !== false) //found in recursive call
            return "[$k]$recurNdx";
      } else
         if ($v == $navItem) //found here.
            return "[$k]";
   }
   return $thisIndex;
}
[/code]

Should return "[2][name]"
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.