php生成随机数 自定义函数 randstr($length) _PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php生成随机数 自定义函数 randstr($length)

php生成随机数 自定义函数 randstr($length)

 2012/6/29 16:38:00  织梦的大白兔  程序员俱乐部  我要评论(0)
  • 摘要:functionrandstr($len=6){$chars='abcdefghijklmnopqrstuvwxyz0123456789';#characterstobuildthepasswordfrommt_srand((double)microtime()*1000000*getmypid());#seedtherandomnumbergenerater(mustbedone)$password='';while(strlen($password)<$len)$password
  • 标签:PHP 函数 DST 自定义
function randstr($len=6){
    $chars='abcdefghijklmnopqrstuvwxyz0123456789';
    #characters to build the password from
    mt_srand((double)microtime()*1000000*getmypid());
    #seed the random number generater (must be done)
    $password='';
    while(strlen($password)<$len)
        $password.=substr($chars,(mt_rand()%strlen($chars)),1);
    return $password;
}

$salt = randstr();
发表评论
用户名: 匿名