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.

Hey guys here is my php:

$x = array("one", "two", "three");
foreach ($x as $value)
{
  if ($value != 'one' && $value != 'two')
  {
    echo $value . "<br />";
  }
}

This echo's only the word three. I had to use $value != 'one' && $value != 'two' to make this happen and I was wondering if I could consolidate this into something like this:

if ($value != 'one, two')

That doesn't work so I was wondering if you guys could provide some help.

share|improve this question

5 Answers

up vote 4 down vote accepted
if (!in_array($value, array('one', 'two')))
  echo $value;
share|improve this answer
This is perfect. Thanks! – Chris Olson May 25 '12 at 0:53

You could create a switch statement to make it look prettier, but that's as far as you can go.

switch ($i) {
    case "one":
    case "two":
    case "three":
        echo $value . '<br/>';
        break;
}
share|improve this answer

if you need to print or do certain operation when value == 'three' then only look for value =='three'

  foreach ($x as $value) 
 {
      if($value === "three")
      echo $value;
 }

also you can take a look at using === operator to compare strings. since == uses type juggling while === enforces same type (2 strings, 2 int no mixing) link: http://www.php.net/manual/en/language.operators.comparison.php

share|improve this answer

Skip the foreach altogether:

$x=array("one","two","three");
$exclude=array("one","two");

print_r(array_diff($x, $exclude));
share|improve this answer
if ($value == 'three')

maybe this?

share|improve this answer
That didn't work. – Chris Olson May 25 '12 at 0:50

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.