首页  >  文章  >  后端开发  >  PHP生出随机字符串函数

PHP生出随机字符串函数

怪我咯
怪我咯原创
2017-07-09 09:24:021375浏览

<?php  

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

?>

以上是PHP生出随机字符串函数的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn