Source Code:
(back to article)
<?php $string = "Hello, World!"; $shuffled_string = str_shuffle($string); echo $shuffled_string;
Result:
Report an issue