這篇文章主要介紹了PHP生成自定義長度隨機字符串的函數分享,需要的朋友可以參考下
php隨機生成字符串可以自己定義自己所需要的長度,在實際應用開發中,經常遇到。
代碼如下:
//隨機生成字符串
function random($length) {
srand(date("s"));
$possible_charactors = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$string = "";
while(strlen($string)<$length) {
$string .= substr($possible_charactors,(rand()%(strlen($possible_charactors))),1);
}
return($string);
}
注:更多精彩文章請關注三聯編程教程欄目。