str_shuffle() function in php
0 1941
str_shuffle() function is used to shuffles all the characters of a string randomly. It is an inbuilt function of PHP.
Syntax:
str_shuffle($string);
here,
$string is a PHP String.
Example:
<?php $str="Welcome to Coding Tag"; $new_str=str_shuffle($str); echo "Old string is : <strong>$str</strong><br>"; echo "Shuffled string is : <strong>$new_str</strong>"; ?>
Output:
Shuffle() function in PHP
Share:
Comments
Waiting for your comments