note 102760 deleted from function.str-shuffle by danbrown
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: mrextreme at freemail dot hu
----
function mb_str_shuffle( $str )
{
$randomArr = preg_split( "//u", $str );
shuffle( $randomArr );
return implode( '', $randomArr );
}