PHP str_shuffle() 函数
说明
str_shuffle()
函数随机打乱字符串的所有字符。
下表总结了该函数的技术细节。
返回值: | Returns the shuffled string. |
---|---|
版本: | PHP 4.3.0+ |
语法
str_shuffle()
函数的基本语法如下:
str_shuffle(string);
下面的例子展示了 str_shuffle()
函数的作用。
<?php
// 示例字符串
$str = "Hello World!";
// 执行字符串混洗
echo str_shuffle($str);
?>
参数
str_shuffle()
函数接受以下参数。
参数 | 说明 |
---|---|
string | 必填。 指定要随机播放的字符串。 |
Advertisements