str_shuffle

Randomly shuffles a string (PHP 4 >= 4.3.0)
string str_shuffle ( string str )

str_shuffle() shuffles a string. One permutation of all possible is created.

Example 949. str_shuffle() example

<?php
$str
= 'abcdef';
$shuffled = str_shuffle($str);

// This will print something like: bfdaec
print $shuffled;
?>

See also shuffle() and rand().

This HTML Help has been published using the chm2web software.