PHP str_shuffle() function randomly shuffles a string.
Syntax:
str_shuffle(string)
string : Required. Specifies the input string.
Example:
<?php
echo str_shuffle("Good Morning");
?>
Output will be:
nGog dnoiroM
Syntax:
str_shuffle(string)
string : Required. Specifies the input string.
Example:
<?php
echo str_shuffle("Good Morning");
?>
Output will be:
nGog dnoiroM
0 comments:
Post a Comment