当前位置:Gxlcms > PHP教程 > php生成随机字符串(自定义纯数字、纯字母或数字字母混合)

php生成随机字符串(自定义纯数字、纯字母或数字字母混合)

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

  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. }
  25. $string.=$b;
  26. }
  27. if($panduan==2)$what=3;
  28. }
  29. return $string;
  30. }
  31. echo rand_zifu(3,10);

人气教程排行