For this post,we learn on how to shuffle the character,here is the code:
<?PHP
$variable_name = 'pencil ';
$variable_name = str_shuffle($variable_name);
print $variable_name;
?>
str_shuffle()-will shuffle the variable value.
N/NOTE:how about change the value of $variable_name-=12345,if you want to know more la....
No comments:
Post a Comment