Is there a better way to do something like this and is this the correct way to do if statements and the correct way to do Or

PHP Code:
if ($f == 43 56 38) {

//Do stuff

} else {

if (
$f == 34 53 9) {

//do other stuff 

} else {

if (
$f == 10 8) {

//do more crap

} else {

//other things

          
}  
      }
   }