当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > str_shuffle() 函数
The str_shuffle() function randomly shuffles all the characters of a string.
str_shuffle()函数的作用是:随机打乱字符串中的字符顺序。
str_shuffle(string) |
Parameter参数 | Description描述 |
---|---|
string | Required. Specifies the string to shuffle 必要参数。指定需要进行随机打乱的字符串对象 |
<?php echo str_shuffle("Hello World"); ?> |
The output of the code above could be:
上述代码将输出下面的结果:
H leooWlrld |