I have an array
Array(
[32] => ki
[97] => Array
    (
        [0] => l$
        [1] => ml
        [2] => 8e
    )
[98] => fp
[99] => @w
[100] => lf 
)
if I do array search for example:
echo array_search("fp", $array);
the output will be "98". How can I get the key if im looking for a value inside another array like "ml"? I wanted to get "97" if i search for value "ml".
 
     
    