Hi dude
Not a language construct or anything of that nature. The most similar in functionality would be in_array().
Code:
# if $something IN ('AA','AB','CD') then ...
# to...
$arr= array ( 'AA' , 'AB' , 'CD' ) ;
if ( in_array ( 'something' , $arr ) )
{
}
Have a good day
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --