php如何生成不重複隨機字串

2020-09-26 09:00:31

php生成不重複隨機字串的方法:1、使用時間戳作為原始字串,再隨機生成五個字元隨機插入任意位置,生成新的字串,程式碼為【$position=rand()%strlen($chars)】;2、使用【array_slice】函數隨機抽取。

php生成不重複隨機字串的方法:

1、使用時間戳作為原始字串,再隨機生成五個字元隨機插入任意位置,生成新的字串,保證不重複

function rand($len)
    {
        $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
        $string=time();
        for(;$len>=1;$len--)
        {
            $position=rand()%strlen($chars);
            $position2=rand()%strlen($string);
            $string=substr_replace($string,substr($chars,$position,1),$position2,0);
        }
        return $string;
    }

2、使用array_slice()函數隨機抽取

<?php
$numbers = range (1,50);
//shuffle 將陣列順序隨即打亂
shuffle ($numbers);
//array_slice 取該陣列中的某一段
$num=6;
$result = array_slice($numbers,0,$num);
print_r($result);
?>

相關學習推薦:(視訊)

以上就是php如何生成不重複隨機字串的詳細內容,更多請關注TW511.COM其它相關文章!