What is the fastest way to check if a variable is present in an array as its value and return the key of it?
Example:
$myArray = [ "test" => 1, "test2" = 2, "test3" = 3];
$var = [1,6,7,8,9];
What I need is if($var is in $myArray) return (in this case)
"test".
Is this possible without doing two loops?
Are there any functions like in_array()
that returns the key of the value if found?