(PHP 4 >= 4.3.0, PHP 5)
str_shuffle() shuffles a string. One permutation of all possible is created.
Przykład 1. str_shuffle() example
<?php$str = 'abcdef';$shuffled = str_shuffle($str);// This will echo something like: bfdaececho $shuffled;?>
See also shuffle() and rand().
Hosting by: Hurra Communications Sp. z o.o.Generated: 2007-01-26 18:02:37