$len表示長度,程式碼如下:
複製程式碼 程式碼如下:
/**
* 產生隨機字串
*
* 產生一個指定長度的隨機字串,並傳回給使用者
*
* @access public
* @param int $len 產生字串的位數
* @return string
*/
/***/ function randstr($len=6) {
$chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz0123456789-@#b~';
// *1000000*getmypid());
// seed the random number generater (must be done)
$password='';
while(strlen($password)$ password.=substr($chars,(mt_rand()%strlen($chars)),1);
return $password;
}
以上就介紹了整數轉字串 php產生隨機數或字串的程式碼,包括了整數轉字串方面的內容,希望對PHP教程有興趣的朋友有所幫助。