Ich habe da was gefunden
function array_durchsuchen($array, $string){
$enthalten_in=array();
foreach($array as $key1 => $value1){
foreach($value1 as $key2 => $value2){
if($value2 == $string){
$enthalten_in[]=$key1;
}
}
}
return $enthalten_in;
}
Aber das funktioniert leider noch nicht so ganz...