computer programming more verbose than human language. this is so that there is no ambiguity.
No, you must do this:
if( $searchfor == 'value1' || $searchfor == 'value2' || $searchfor == 'value3' )
{
// do something
}
You must repeat the variable name.
Or you could use an array
$searchfor = 'value1';
$goodValues = array( 'value1', 'value2', 'value3' );
if( in_array( $searchfor, $goodValues ) )
{
echo 'hi mom';
}
Output:
hi mom
it's up to you to decide which style best suits your needs.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…