当前位置:主页 > 软件编程 > PHP代码 >

php 随机生成10位字符代码

时间:2020-10-16 12:53:53 | 栏目:PHP代码 | 点击:

复制代码 代码如下:

function randStr($len)
{
$chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz'; // characters to build the password from
$string='';
for(;$len>=1;$len--)
{
$position=rand()%strlen($chars);
$string.=substr($chars,$position,1);
}
return $string;
}
echo randStr(10)."<br>";


您可能感兴趣的文章:

相关文章