首頁  >  文章  >  後端開發  >  php產生不重複字串

php產生不重複字串

王林
王林原創
2019-09-20 11:54:002481瀏覽

php產生不重複字串

PHP產生不重複字串

#使用時間戳記作為原始字串,再隨機產生五個字符隨機插入任意位置,產生新的字串,保證不重複。

程式碼如下:

#
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;
    }

推薦教學:PHP影片教學

以上是php產生不重複字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:php產生txt亂碼下一篇:php產生txt亂碼