$filter = array_filter($array, function($v){
    return strpos($v, '.') === false;
}, ARRAY_FILTER_USE_BOTH);

print_r($filter);