php生成随机数或者字符串的代码

前端之家收集整理的这篇文章主要介绍了php生成随机数或者字符串的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$len表示长度,代码如下:
<div class="codetitle"><a style="CURSOR: pointer" data="92028" class="copybut" id="copybut92028" onclick="doCopy('code92028')"> 代码如下:

<div class="codebody" id="code92028">
/*
产生随机字符串

产生一个指定长度的随机字符串,并返回给用户

@access public
@param int $len 产生字符串的位数
@return string
/
function randstr($len=6) {
$chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz0123456789-@#~';
// 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;
}

原文链接:https://www.f2er.com/php/29496.html

猜你在找的PHP相关文章