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.

how can i compare multiple data using php

for example i have a variable $foo , the data assigned to it varies . if there are four different data can be assigned to variable $foo , like :" car , van,bus or bicycle"

how can i use the if statement to check which data is assigned to $foo?

normally if i have two data i will use

if($foo == 'firstdata'){
   //execute something as this is the first data
}
else{
   //this is the second data!
}

if there's 3 data i will use elseif statement.

but now 4 data , what can i use ? or can i use elseif as many times as i want??

share|improve this question

2 Answers

up vote 4 down vote accepted

There's no practical limit to how many if/elseif/elseif/elseif you can chain together. Another alternative is to use a switch statement:

switch ($foo) {
   case 'firstdata':
      ... do something with firstdata ...
      break;
   case 'car':
      ... do car stuff
      break;
   case 'van':
      ... do van stuff
      break;
   ...
   default:
      ... do stuff with an unknown datum
}
share|improve this answer
oh nice! thanks for helping. – edward Oct 21 '11 at 3:38
what is break; ? – edward Oct 21 '11 at 3:39
While you can in fact use elseif as many times as you like I would recommend this approach in a lot of cases, particularly the one you called out. – donatJ Oct 21 '11 at 5:10

Yes, you can use elseif as many times as you want, or you can use the switch statement .

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.