Jump to content

[SOLVED] Efficiency: is there a simpler || operator in if declaration?


DamienRoche

Recommended Posts

What I want to know is if there is another way to do this:

 

if($var == "1" || $var == "12"){

 

etc etc

 

}

 

Is there not a way of saying if $var is this or this or this without having to declare the var every time?

 

like:

 

if($var == "1","12","34"){

 

 

}

 

Thanks.

There is one other way ... use a switch statement:

<?php
switch ($var) {
   case '1':
   case '12':
   case '34':
//
//   do your work
//
     break;
}?>

Probably overkill here, but it is an option.

 

Ken

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.