Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
312 views
in Technique[技术] by (71.8m points)

php - Can I set many values for the same variable?

I have a PHP variable that its value = keywords the code searches for

$searchfor = 'error1';

Each time I need to add a new keyword to searchfor, i repeat the function. Can't I for example set

$searchfor = 'error1' and 'error2' and 'error3';

but don't stop the code if one of them didn't exist.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...