PHP生成自定义长度随机字符串的函数分享

php随机生成字符串可以自己定义自己所需要的长度,在实际应用开发中,经常遇到。

复制代码 代码如下:


//随机生成字符串
function random($length) {
     srand(date("s"));
     $possible_charactors = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
     $string = "";
     while(strlen($string)<$length) {
          $string .= substr($possible_charactors,(rand()%(strlen($possible_charactors))),1);
     }
     return($string);
}

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/9afbfa1899f502a155793591d50c124c.html