str_shufflePodręcznik PHPPoprzedniNastępnystr_shuffle (PHP 4 >= 4.3.0)str_shuffle -- Randomly shuffles a stringDescriptionstring str_shuffle ( string str)
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 print something like: bfdaec
print $shuffled;
?>
See also shuffle() and rand().
PoprzedniSpis treściNastępnystr_rot13Początek rozdziałustr_word_count
Wyszukiwarka