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

arrays, php, search

Solution

Do you mean something like `in_array()` function?

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

Problem

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?

Original source