php判断多维数组是否存在某个值

  function find_in_array($value, $array) { 
            foreach($array as $item) { 
                if(!is_array($item)) { 
                    if ($item == $value) {
                        return true;
                    } else {
                        continue; 
                    }
                } 
                if(in_array($value, $item)) {
                    return true; 
                } else if(deep_in_array($value, $item)) {
                    return true; 
                }
            } 
            return false; 
    }

 

你可能感兴趣的