PHP-Functions.com



Online-Functions:
md5() - sha1() - crypt() - crc32() - str_rot13()
base64_encode() - base64_decode() - urlencode() - urldecode()

str_shuffle

(PHP 4 >= 4.3.0, PHP 5)

str_shuffle -- Randomly shuffles a string

Description

string str_shuffle ( string str )

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

Parameters

str

The input string.

Return Values

Returns the shuffled string.

Examples

Example 1. str_shuffle() example

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

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

See Also

shuffle()
rand()

Impressum
ipcount.net Kostenloser Besucherzähler