Shuffle Characters in String using PHP June 21, 2021 PHP 0 Comments 325 Views str_shuffle function <?php $text = 'Hello'; $result = str_shuffle($text); echo $result;
Leave a Comment
Cancel reply