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.

I have multidimensional array like this:

Array
(
    [0] => Array
        (
            [id] => 10184
            [meta_tags] => tag1,tag2

        )
)

How do i search by keyword (example, tag1) in an array.

Thank u.

share|improve this question
1  
... and then take a look at this answer. – jensgram Mar 7 '11 at 12:49

2 Answers

function ($haystack, $tag) {
    foreach ($haystack as $key => $value) {
        if (in_array($tag, explode(',', $value['meta_tags']) {
            return true;
        }
    }
}
share|improve this answer
It's working fine,Thanks a lot.... – vishnu Mar 7 '11 at 12:55

I think you have to use a recursive function since arrays don't have the same dimensions.

Please, refer to that post that features a recursive function really useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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