THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP str_shuffle() Function

PHP String Reference PHP String Reference

Example

Randomly shuffle all characters of a string:

<?php
echo str_shuffle("Hello World");
?>
Run example »

Definition and Usage

The str_shuffle() function randomly shuffles all the characters of a string.


Syntax

str_shuffle(string)

Parameter Description
string Required. Specifies the string to shuffle

Technical Details

Return Value: Returns the shuffled string
PHP Version: 4.3.0+

PHP String Reference PHP String Reference