Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

Mc Labels | Online Fashion E-Boutique
Nella nostra concept boutique si possono trovare i migliori brands già affermati del panorama nazionale e internazionale, come anche nuovi designers, specialmente coloro che lavorano con il made in Italy.
Natural Beauty Shop
Natural Beauty - vendita on-line integratori alimentari e cosmetici naturali.

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



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.

Esempio 1. str_shuffle() example

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

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

See also shuffle() and rand().