Jump to content

in_array problem


mraza

Recommended Posts

hi i wants to skip few categories from xml feed but have problem, here is my code which is working:

foreach ($xml->channel->item as $item) { 

                foreach ($item->children() as $child) {
                    if ($child->getName() == 'category') {
                        $categories[] = (string) $child;
                    }
                }
if((in_array("one",$categorie) || in_array("two",$categorie)  in_array("three",$categorie))  {
continue;
}
// other code here
}

 

and here is what i wants to separate categories in $skipcats but its not working.

$skipcats = array("one","two","three");
foreach ($xml->channel->item as $item) { 

                foreach ($item->children() as $child) {
                    if ($child->getName() == 'category') {
                        $categories[] = (string) $child;
                    }
                }
foreach ($skipcats as $skip) {
if(in_array($skip,$categorie)) {
continue;
}
}
// other code here
}

please what i am missing.

thanks for any guidance .

 

Link to comment
Share on other sites

You have a typo. You named the array $categories, but in the in_array() function you are using $categories.

 

But, if you plan to skip those values anyway, why add them to the array to begin with. Add your logic to the foreach loop so it doesn't add them to $categories to begin with.

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.