Re: OR statement

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This can also be done with double pipes, which is what is used in many other languages.
---------------------------------
if($audio=="Cool" || $audio=="junk" || $audio=="Funky"){
Do this
} else{
Do this
}
----------------------------------
As far as I can tell there are no plans to remove or reason to favor one method or the other, so it's just a matter of preference.



Philip Olson wrote:

This work fine, however, I would like to add to the criteria above. I would
like to say:

if ($audio == "Cool" or "junk" or "funky"){

...



if (in_array($audio,array("Cool","junk","funky"))) {
...
}




Yes that's one way but to answer the question:

if ($a == 'foo' OR $a == 'bar') {


Regards, Philip




[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux