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.

Here is my array;

$subcategory = array(
    "cata" => array("", "Finance", "Economics", "Accounting", "Operations Management"),
    "catb" => array("", "Computer Science", "Electrical Engineering", "Mechanical Engineering", "Civil Engineering"),
    "catc" => array("", "Poetry", "Literature", "Communications"),
    "catd" => array("", "American History", "European History", "World History")
    );

If I search for "Poetry", how can I get return "catc"?

share|improve this question
2  
What have you tried? – Mathieu Imbert Aug 23 '12 at 17:29
here's a hint: for loop inside a for loop – SiGanteng Aug 23 '12 at 17:29
1  
By looping over the array, and then looping over each nested array. This is a simple question of PHP syntax, show us what you've attempted and we can help you sort out any issues. – meagar Aug 23 '12 at 17:29

closed as too localized by meagar, Neal, PeeHaa 埽, j0k, tereško Aug 24 '12 at 8:06

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 2 down vote accepted

Use nested for loops to go through the array's arrays along with array_search(...)

for(...){
    for(...){ 

    }
}
share|improve this answer

Check out comments for php function array_search, something similar already mentioned there.

share|improve this answer

Considering the structure of your array I would go with this solution:

    $search = "Poetry";
    foreach ($subcategory as $categoryName => $values) 
        if (in_array($search, $subcategory[$categoryName])) return $categoryName;
share|improve this answer

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