str_shuffle
Randomly disrupt a string
str_shuffle()
function randomly disrupts all characters in the string.
Randomly disrupt all characters in the string:
<?php echo str_shuffle ( "I love Shanghai" ) ; ?>
Try it yourself
str_shuffle ( string )
parameter | describe |
---|---|
string | Required. Specifies the string to be disrupted. |