欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

使用php生成一个随机字符串的代码

程序员文章站 2022-05-26 14:41:26
...
  1. /*************
  2. *@l - length of random string
  3. */
  4. function generate_rand($l){
  5. $c= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  6. srand((double)microtime()*1000000);
  7. for($i=0; $i$rand.= $c[rand()%strlen($c)];
  8. }
  9. return $rand;
  10. }
  11. ?>
复制代码