小说网 找小说 无限小说 烟雨红尘 幻想小说 酷文学 深夜书屋

php 随机生成10位字符

php 随机生成10位字符

 

 

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

posted on 2009-03-25 14:35  王峰炬  阅读(223)  评论(0编辑  收藏  举报

导航