Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to search by key=>value in a multidimensional array in PHP
PHP search for Key in multidimensional array

How can I search in a array values and get the key?

Example: search for id 1 = key 0 or search for name Frank = key 1

Array
(
    [0] => Array
    (
        [id] => 1
        [name] => Bob
        [url] => http://www.bob.com.br
    )

[1] => Array
    (
        [id] => 2
        [name] => Frank
        [url] => http://www.frank.com.br
    )
)

Thks. Adriano

share|improve this question
There are many examples to choose from – Michael Berkowski Jun 27 '12 at 18:59
tks Michael.. the (PHP search for Key in multidimensional array) post resolved my problem... – adrianogf Jun 27 '12 at 19:06

marked as duplicate by netcoder, Niko, Michael Berkowski, Wrikken, nickb Jun 27 '12 at 19:15

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

Use array_search

foreach($array as $value) {
    $result = array_search('Frank', $value);
    if($result !== false) break;
}
echo $result
share|improve this answer

If you do not know the depth, you can do something like the following, which employs the use of RecursiveIteratorIterator and RecursiveArrayIterator:

<?php
/*******************************
*   array_multi_search
*
*   @array  array to be searched
*   @input  search string
*
*   @return array(s) that match
******************************/
function array_multi_search($array, $input){
    $iterator = new RecursiveIteratorIterator(new RecursiveArrayIterator($array));  

    foreach($iterator as $id => $sub){
        $subArray = $iterator->getSubIterator();  

        if(@strstr(strtolower($sub), strtolower($input))){
    $subArray = iterator_to_array($subArray);
            $outputArray[] = array_merge($subArray, array('Matched' => $id));
        }
    }  

    return $outputArray;
}
share|improve this answer

don't think there is a predifned function for that, but here is one:

function sub_array_search($array, $sub_key, $value, $strict = FALSE)
{
   foreach($array as $key => $sub_array)
   {
      if($sub_array[$sub_key] == $value)
      {
         if(!$strict OR $sub_array[$sub_key] === $value)
         {
            return $key;
         }
      }
   }

   return FALSE;
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.