php不重複字串的實作方法:先建立一個PHP範例檔案;然後透過「function rand($len){...}」方法產生不重複隨機字串即可。
本教學操作環境:windows7系統、PHP5.6版,此方法適用於所有品牌電腦。
推薦:《PHP影片教學》
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中文網其他相關文章!