当前位置:Gxlcms > PHP教程 > qq特殊字符php随机生成10位字符代码

qq特殊字符php随机生成10位字符代码

时间:2021-07-01 10:21:17 帮助过:5人阅读

代码如下:


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)."
";


以上就介绍了qq特殊字符 php 随机生成10位字符代码,包括了qq特殊字符方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行