首页  >  文章  >  后端开发  >  php生成随机数 自定义函数 randstr($length)

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

巴扎黑
巴扎黑原创
2016-11-23 11:51:172575浏览

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();

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn