php 随机生成10位字符代码

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

<div class="codetitle"><a style="CURSOR: pointer" data="66274" class="copybut" id="copybut66274" onclick="doCopy('code66274')"> 代码如下:

<div class="codebody" id="code66274">
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)."
";

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

猜你在找的PHP相关文章