Posted by gosha bine on 05/19/07 12:52
Ciaran wrote:
> Is there a more efficient way to write this:
> if($var=1 || $var=4 || $var=27 || $var=28 || $var=30 || $var=37 ||
> $var=38){echo "true";}
>
> Cheers,
> Ciarán
>
='s should be == I guess
if(in_array($var, array(1, 4 etc)))
is perhaps shorter, but not "more efficient", so the answer is "no".
--
gosha bine
extended php parser ~ http://code.google.com/p/pihipi
blok ~ http://www.tagarga.com/blok
[Back to original message]
|