我需要找到哪个是包含值部分的键并且不显示它
$arr = array(0 => "helbor_000", 1 => "ez_000", 2 => "xx_333");
$find = "helb";
$key = array_search($find, $arr);
foreach($arr as $index => $value){
if($index != $key){
echo $value;
}
}