Ver original$excluir = array(8,11,14,19);$numero = -1;while(true){ $numero = rand(1,20); if(!in_array($numero, $excluir)) break;}echo $numero;