vote up 2 vote down star

I have an array which is a list of domains, I want to print all of the items in the array except the one which contains $x. $x is variable so basically it never prints the array item when it contains $x. Can anyone help me? :)

flag

1 Answer

vote up 7 vote down check

Darkey's answer is correct assuming you don't want to print array values that equal $x - but if you don't wish to print those that "contain" $x, try:

foreach ($array as $key => $value) {
    if (strpos($value, $x) === false) {
         print($value);
    }
}

If $x = stack, then entries such as "stackoverflow.com" and "getstacked.org" would be excluded

link|flag
Thank you this was exactly what I was looking for. – zuk1 Oct 17 '08 at 9:27

Your Answer

Get an OpenID
or

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