123 is not an array key "123 456 789" is array key
Well Try
Well Try
function arraysearch($search,$array){
foreach($array as $key=>$val){
if(strpos($search,$val)!==false){
return $key;
}
}
}
arraysearch("123",$example);
0 comments:
Post a Comment