Jump to content

How do you check an array in an array in an array?


Recommended Posts

Hi guys,

 

Could someone help me please? How do I check the following data foreach [id] and check to see if it the whole array has a certain ID in it? I can access individual data like this: $array['data'][0]['id']; but I'm not sure of the best way to check the array for a particular ID. Any ideas?

 

Thanks, RJP1

 

Array
(
    [data] => Array
        (
            [0] => Array
                (
                    [name] => sdajskdhsajd
                    [category] => Application
                    [id] => 323635478887920
                    [created_time] => 878978978
                )

            [1] => Array
                (
                    [name] => askdjakdjasd
                    [category] => Application
                    [id] => 36741566509099181
                    [created_time] => 2011-02-11T15:41:14+0000
                )

            [2] => Array
                (
                    [name] => asdasdasdasds
                    [category] => Interest
                    [id] => 1150572090878508639
                    [created_time] => 2011-02-11T15:38:40+0000
                )

Do you want to check if any of the [id]s in [data] contain a certain ID? Like a "search within entire array"?

 

Try this to make an array of all [id]s:

 

$ids = array();
foreach $array['data'] as $item {
    $ids[] = $item['id'];
}

if (in_array('534890345_random_id', $ids)) {
    // do something here
}

 

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.