(PHP 4 >= 4.3.0, PHP 5, PHP 7)
Randomly shuffles a string
string str_shuffle ( string $str )
str_shuffle() shuffles a string. One permutation of all possible is created.
Parameters:
str
The input string.
Returns:
Returns the shuffled string.
Examples:
str_shuffle() example
1 2 3 4 5 6 7 | <?php $str = 'abcdef' ; $shuffled = str_shuffle ( $str ); // This will echo something like: bfdaec echo $shuffled ; ?> |
See also:
rand() -
Please login to continue.