PHP Conference Japan 2024

str_shuffle

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

str_shuffle随机打乱字符串

描述

str_shuffle(string $string): string

str_shuffle() 打乱字符串。生成所有可能的排列组合中的一种。

注意

此函数不会生成加密安全的数值,并且不能用于加密目的或需要返回值不可猜测的用途。

如果需要加密安全的随机性,则可以使用 Random\Randomizer 以及 Random\Engine\Secure 引擎。对于简单的用例,random_int()random_bytes() 函数提供了方便且安全的 API,它由操作系统的 CSPRNG 支持。

参数

string

输入字符串。

返回值

返回打乱后的字符串。

变更日志

版本 描述
7.1.0 内部随机化算法已更改,改为使用 » Mersenne Twister 随机数生成器,而不是 libc rand 函数。

示例

示例 #1 str_shuffle() 示例

<?php
$str
= 'abcdef';
$shuffled = str_shuffle($str);

// 这将回显类似以下内容:bfdaec
echo $shuffled;
?>

参见

添加注释

用户贡献的注释 13 条注释

jojersztajner at OXYGEN dot POLAND
17 年前
根据一所英国大学的研究,单词中的字母顺序并不重要,唯一重要的是第一个和最后一个字母在正确的位置。其余部分可以是完全的混乱,你仍然可以毫无问题地阅读它。这是因为我们不是单独阅读每个字母,而是将单词作为一个整体来阅读。

这是一个以这种方式打乱文本的代码
<?php
function scramble_word($word) {
if (
strlen($word) < 2)
return
$word;
else
return
$word{0} . str_shuffle(substr($word, 1, -1)) . $word{strlen($word) - 1};
}

echo
preg_replace('/(\w+)/e', 'scramble_word("\1")', 'A quick brown fox jumped over the lazy dog.');
?>

如果您想创建可访问的 CAPTCHA,它可能很有用。
ronald
9 年前
此页面缺少一条非常重要的通知

注意

此函数不会生成加密安全的数值,不应将其用于加密目的。如果您需要加密安全的数值,请考虑改用 random_int()、random_bytes() 或 openssl_random_pseudo_bytes()。
blamoo2 at hotmail dot com
9 年前
此函数受 srand() 影响

<?php
srand
(12345);
echo
str_shuffle('Randomize me') . '<br/>'; // "demmiezr aon"
echo str_shuffle('Randomize me') . '<br/>'; // "izadmeo rmen"

srand(12345);
echo
str_shuffle('Randomize me') . '<br/>'; // "demmiezr aon" again
?>
ccb2357 at gmail dot com
1 年前
<?php
function str_rand(int $length = 20) : string {
$ascii_codes = range(48, 57) + range(97, 122);
$codes_lenght = (count($ascii_codes)-1);
shuffle($ascii_codes);
$string = '';
for(
$i = 1; $i <= $length; $i++){
$previous_char = $char ?? '';
$char = chr($ascii_codes[random_int(0, $codes_lenght)]);
while(
$char == $previous_char){
$char = chr($ascii_codes[random_int(0, $codes_lenght)]);
}
$string .= $char;
}
return
str_shuffle($string);
}
?>
qeremy [atta] gmail [dotta] com
12年前
一个正确的Unicode字符串随机排列;

<?php
function str_shuffle_unicode($str) {
$tmp = preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY);
shuffle($tmp);
return
join("", $tmp);
}
?>

$str = "Şeker yârim"; // 我的甜心

echo str_shuffle($str); // i�eymrŢekr �

echo str_shuffle_unicode($str); // Şr mreyeikâ
匿名用户
5年前
正如本文档中所述,str_shuffle **不是**密码学安全的,但是我在网上看到很多代码示例,人们只使用它来生成随机密码。因此,我想分享我的函数,虽然它使用了str_shuffle,但也依赖于random_int()以增强安全性。我使用此函数生成盐,在处理散列时使用,但它也可用于例如为新用户生成默认密码。

它从一个可能的字符集开始,在本例中为所有字母(大写和小写)、0-9和几个特殊字符。

然后它将对字符集进行随机次数的str_shuffle操作,使用random_int()(当前设置为1-10)。

然后,一旦可能的字符集被随机排列,它将再次使用random_int()从随机排列的字符串中选择一个字符作为随机位置,并对您想要在输出中使用的每个字符执行此操作一次。

function secret_gen( $len=64 ) {
$secret = "";
$charset = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_-+=`~,<>.[]: |';
for ( $x = 1l $x <= random_int( 1, 10 ), $x++ ){
$charset = str_shuffle( $charset );
}
for ( $s = 1; $s <= $len; $s++ ) {
$secret .= substr( $charset, random_int( 0, 86 ), 1 );
}
return $secret;
}
wmtrader at yandex dot ru
4年前
反随机排列,使用
<?php
$string
= "Hello World!";

$seed = 1234567890;
mt_srand($seed);

echo
$sh = str_shuffle($string); //输出 'eloWHl rodl!'
echo str_unshuffle($sh, $seed); //输出 'Hello World!'
?>

<?php
function str_unshuffle($str, $seed){
$unique = implode(array_map('chr',range(0,254)));
$none = chr(255);
$slen = strlen($str);
$c = intval(ceil($slen/255));
$r = '';
for(
$i=0; $i<$c; $i++){
$aaa = str_repeat($none, $i*255);
$bbb = (($i+1)<$c) ? $unique : substr($unique, 0, $slen%255);
$ccc = (($i+1)<$c) ? str_repeat($none, strlen($str)-($i+1)*255) : "";
$tmp = $aaa.$bbb.$ccc;
mt_srand($seed);
$sh = str_shuffle($tmp);
for(
$j=0; $j<strlen($bbb); $j++){
$r .= $str{strpos($sh, $unique{$j})};
}
}
return
$r;
}
匿名用户
10年前
str_shuffle不推荐用于密码。每个字符只存在一次)。

以下函数更适合这种情况。

<?php
function generatePassword($length = 8) {
$possibleChars = "abcdefghijklmnopqrstuvwxyz";
$password = '';

for(
$i = 0; $i < $length; $i++) {
$rand = rand(0, strlen($possibleChars) - 1);
$password .= substr($possibleChars, $rand, 1);
}

return
$password;
}
?>
CygnusX1
17 年前
为了结合下面两个函数的功能和简单性,我们可以使用

<?php
function generatePasswd($numAlpha=6,$numNonAlpha=2)
{
$listAlpha = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
$listNonAlpha = ',;:!?.$/*-+&@_+;./*&?$-!,';
return
str_shuffle(
substr(str_shuffle($listAlpha),0,$numAlpha) .
substr(str_shuffle($listNonAlpha),0,$numNonAlpha)
);
}
?>
匿名用户
14年前
适用于所有编码格式的随机排列



<?php

function unicode_shuffle($string, $chars, $format = 'UTF-8')
{
for(
$i=0; $i<$chars; $i++)
$rands[$i] = rand(0, mb_strlen($string, $format));

$s = NULL;

foreach(
$rands as $r)
$s.= mb_substr($string, $r, 1, $format);

return
$s;
}

?>
[email protected]
4年前
<?php

//获取指定长度的随机字符串

function getRandom($length){

$str = 'abcdefghijklmnopqrstuvwzyz';
$str1= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$str2= '0123456789';
$shuffled = str_shuffle($str);
$shuffled1 = str_shuffle($str1);
$shuffled2 = str_shuffle($str2);
$total = $shuffled.$shuffled1.$shuffled2;
$shuffled3 = str_shuffle($total);
$result= substr($shuffled3, 0, $length);

return
$result;

}

echo
getRandom(8);

//输出 -->
//GATv3JPX
//g7AzhDtR
//DTboKtiL
//CuWZR4cs
//tmTXbzBC

?>
[email protected]
9 年前
/**
* 测试 shuffleString
*/
function testShuffleString() {
$shuffled = shuffleString("ĄęźćÓ");
if (\mb_strlen($shuffled) != 5) {
throw new \UnexpectedValueException("字符数量无效");
}
if ($shuffled == "ĄęźćÓ") {
throw new \UnexpectedValueException("字符串相同");
}
foreach (["Ą", "ę", "ź", "ć", "Ó"] as $char) {
if (\mb_strpos($shuffled, $char) === false) {
throw new \UnexpectedValueException("字符未找到");
}
}
}

/**
* 打乱字符串
*
* @param $stringValue 要打乱的字符串
* @param string $startWith 打乱 $stringValue 并追加到 $startWith
* @return string 打乱后的字符串
* @author Krzysztof Piasecki<[email protected]>
*/
function shuffleString($stringValue, $startWith = "") {
$range = \range(0, \mb_strlen($stringValue));
shuffle($range);
foreach($range as $index) {
$startWith .= \mb_substr($stringValue, $index, 1);
}
return $startWith;
};

testShuffleString();

echo shuffleString("Hello"); // > 'elHol' (类似这样的结果)
echo shuffleString("World!", "Hello "); // > 'Hello do!lrW' (类似这样的结果)
[email protected]
17 年前
非常简单的随机密码生成器,不使用 rand() 函数

<?php
function random_password($chars = 8) {
$letters = 'abcefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
return
substr(str_shuffle($letters), 0, $chars);
}
?>
To Top