Embaralhe aleatoriamente todos os caracteres em uma string:
<?phpecho str_shuffle("Olá Mundo");?>A função str_shuffle() embaralha aleatoriamente todos os caracteres de uma string.
str_shuffle( string )
parâmetro | descrever |
---|---|
corda | Obrigatório. Especifica a string a ser embaralhada. |
Valor de retorno: | Retorna a string embaralhada. |
---|---|
Versão PHP: | 4.3.0+ |