str_shuffle() function in php
Last Updated by Pooja Chikara
0 2176
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:
Recommended Topics:
You May Also Like
PHP Examples
News letter
Subscribe To Never Miss an Article From
Comments
Waiting for your comments