str_shuffle() shuffles a string. One permutation of all possible is created.
<?php
$str = 'abcdef';
$shuffled = str_shuffle($str);
// This will print something like: bfdaec
print $shuffled;
?>| This HTML Help has been published using the chm2web software. |