Posts by Guilherme Ferreira • 11 points
1 post
-
1
votes3
answers2472
viewsA: Generate single random value with php
You can use a function like this: function valorAleatorio($qtdSorteio = 5) { $letras = array('A','a','B','b','C','c','D','d','X'); // precisa ter 9 itens $resultado = ''; while($qtdSorteio > 0) {…