The str_shuffle function randomly shuffle all characters of a string.

    
    $text = "Hello world!";
    $textShuffle = str_shuffle($text);

    echo $textShuffle;
    // !dlrow olleH