Description
string
str_shuffle ( string str)
str_shuffle() shuffles a string_ One permutation
of all possible is created_
Ejemplo 1_ str_shuffle() example <?php
$str = 'abcdef';
$shuffled = str_shuffle($str);
// This will print something like: bfdaec
print $shuffled;
?> |
|
See also shuffle() and rand()_