欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP生出随机字符串函数

程序员文章站 2022-04-30 23:32:19
...
<?php  

/**   
* 产生随机字符串   
*   
* 产生一个指定长度的随机字符串,并返回给用户   
*   
* @access public   
* @param int $len 产生字符串的位数   
* @return string   
*/   
function randStr($len=6) {   
$chars='ABDEFGHJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*'; // characters to build the password from   
mt_srand((double)microtime()*1000000*getmypid()); // seed the random number generater (must be done)   
$password='';   
while(strlen($password)<$len)   
$password.=substr($chars,(mt_rand()%strlen($chars)),1);   
return $password;   
}  

?>

以上就是PHP生出随机字符串函数的详细内容,更多请关注其它相关文章!