kartik\helpers\Enum::inArray PHP Méthode

inArray() public static méthode

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
Résultat boolean
    public static function inArray($needle, $haystack)
    {
        $flippedHaystack = array_flip($haystack);
        return isset($flippedHaystack[$needle]);
    }