php 随机生成10位字符代码
程序员文章站
2023-10-31 16:26:04
复制代码 代码如下:function randstr($len) { $chars='abcdefghijklmnopqrstuvwxyz0123456789abcdefg...
复制代码 代码如下:
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>";
上一篇: 解决v-for中使用v-if或者v-bind:class失效的问题
下一篇: 绝后龙爪手