kartik\helpers\Enum::inArray PHP Method

inArray() public static method

Example: ~~~ if (Enum::inArray('apple', ['apple', 'mango', 'banana'])) { echo 'apple exists'; } ~~~
public static inArray ( string $needle, array $haystack ) : boolean
$needle string the value to search
$haystack array the array to scan
return boolean
    public static function inArray($needle, $haystack)
    {
        $flippedHaystack = array_flip($haystack);
        return isset($flippedHaystack[$needle]);
    }