PHP产生随机字符串函数

2018-09-07 12:42

阅读:416

  <?php

/**
*产生随机字符串
*
*产生一个指定长度的随机字符串,并返回给用户
*
*@accesspublic
*@paramint$len产生字符串的位数
*@returnstring
*/
functionrandStr($len=6){
$chars=ABDEFGHJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*;//characterstobuildthepasswordfrom
mt_srand((double)microtime()*1000000*getmypid());//seedtherandomnumbergenerater(mustbedone)
$password=;
while(strlen($password)<$len)
$password.=substr($chars,(mt_rand()%strlen($chars)),1);
return$password;
}

?>


评论


亲,登录后才可以留言!