RedhopIT
RedhopIT

Reputation: 619

Randomize string characters

I'm looking for a function to change the characters order in a string.

For example, I have this string : "How are you?" , calling the function with this string as parameter would return something like: "wuayero Ho?" or something similar.

Upvotes: 3

Views: 79

Answers (1)

Zoltan Toth
Zoltan Toth

Reputation: 47657

PHP has a handy str_shuffle function for that

Upvotes: 8

Related Questions