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中文網其他相關文章!