Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

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

arrays - see if a variable equals any other variables in a list php

In php, I was wondering how I check if a variable equals any of the variables in a list.

I thought I could try something like

if( $example == array($one, $two, $three, $four, $five) ) {
    //code here
}

This didn't work, is there a similar way of doing it? Otherwise, what would be the best way to do it?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Do you mean something like in_array() function?

if( in_array($example, array($one, $two, $three, $four, $five)) ) {
    //code here
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...