PHP str_shuffle() 函数


PHP String 函数

定义和用法

str_shuffle() 函数随机地打乱字符串中的所有字符。

语法

str_shuffle(string)

参数 描述
string 必需。规定要打乱的字符串。


例子

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

输出:

H elooWlrdl


PHP String 函数
粤ICP备11097351号-1