String Funkcje
PHP Manual

str_shuffle

(PHP 4 >= 4.3.0, PHP 5)

str_shuffleRandomly shuffles a string

Opis

string str_shuffle ( string $str )

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

Parametry

str

The input string.

Zwracane wartości

Returns the shuffled string.

Przykłady

Przykład #1 str_shuffle() example

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

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

Zobacz też:


String Funkcje
PHP Manual