当前位置:Gxlcms > PHP教程 > php生成随机字符串(可指定纯数字、纯字母)

php生成随机字符串(可指定纯数字、纯字母)

时间:2021-07-01 10:21:17 帮助过:20人阅读

例子,php 生成随机字符串,可以指定是纯数字 还是纯字母 或者混合的,可以指定长度的。

  1. //生成随机字符串

  2. function rand_zifu($what,$number){
  3. $string='';
  4. for($i = 1; $i <= $number; $i++){
  5. //混合 字母与数字
  6. $panduan=1;
  7. if($what == 3){
  8. if(rand(1,2)==1){
  9. $what=1;
  10. }else{
  11. $what=2;
  12. }
  13. $panduan=2;
  14. }

  15. //只有数字

  16. if($what==1){
  17. $string.=rand(0,9);
  18. }elseif($what==2){
  19. //只有字母
  20. $rand=rand(0,24);
  21. $b='a';
  22. for($a =0;$a <=$rand;$a++){
  23. $b++;
  24. } bbs.it-home.org
  25. $string.=$b;
  26. }
  27. if($panduan==2)$what=3;
  28. }
  29. return $string;
  30. }
  31. echo rand_zifu(3,10);

人气教程排行