博客列表 >如何在PHP中生成随机数

如何在PHP中生成随机数

P粉823318658
P粉823318658原创
2022年03月22日 12:58:081596浏览
  1. 目录
  2. 第一种方法用mt_rand()
  3. 第二种方法(最快的)
  4. 第三种取当时时间戳
  5. 第四种打乱字符串
  6. 第五种开始创建验证码(直接用函数生成,比较方便快捷)
  7. php mt_rand生成0~1随机小数的效果比较
  8. 1.执行时间比较
  9. 2.随机效果比较
  10. 3.随机阅读推荐
  1. 第一种方法用mt_rand()
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. 7
  9. 8
  10. 9
  11. 10
  12. 11
  13. 12
  14. function GetRandStr($length){
  15. $str='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  16. $len=strlen($str)-1;
  17. $randstr='';
  18. for($i=0;$i<$length;$i++){
  19. $num=mt_rand(0,$len);
  20. $randstr .= $str[$num];
  21. }
  22. return $randstr;
  23. }
  24. $number=GetRandStr(6);
  25. echo $number;
  1. 第二种方法(最快的)
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. 7
  9. 8
  10. 9
  11. 10
  12. 11
  13. 12
  14. 13
  15. 14
  16. 15
  17. 16
  18. 17
  19. 18
  20. 19
  21. 20
  22. 21
  23. 22
  24. function make_password( $length = 8 )
  25. {
  26. // 密码字符集,可任意添加你需要的字符
  27. $chars = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
  28. 'i', 'j', 'k', 'l','m', 'n', 'o', 'p', 'q', 'r', 's',
  29. 't', 'u', 'v', 'w', 'x', 'y','z', 'A', 'B', 'C', 'D',
  30. 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L','M', 'N', 'O',
  31. 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y','Z',
  32. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!',
  33. '@','#', '$', '%', '^', '&', '*', '(', ')', '-', '_',
  34. '[', ']', '{', '}', '<', '>', '~', '`', '+', '=', ',',
  35. '.', ';', ':', '/', '?', '|');
  36. // 在 $chars 中随机取 $length 个数组元素键名
  37. $keys = array_rand($chars, $length);
  38. $password = '';
  39. for($i = 0; $i < $length; $i++)
  40. {
  41. // 将 $length 个数组元素连接成字符串
  42. $password .= $chars[$keys[$i]];
  43. }
  44. return $password;
  45. }
  1. 第三种取当时时间戳
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. function get_password( $length = 8 )
  8. {
  9. $str = substr(md5(time()), 0, $length);//md5加密,time()当前时间戳
  10. return $str;
  11. }
  12. 第四种打乱字符串
  13. 1
  14. 2
  15. 3
  16. 4
  17. 5
  18. 6
  19. function getrandstr(){
  20. $str='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890';
  21. $randStr = str_shuffle($str);//打乱字符串
  22. $rands= substr($randStr,0,6);//substr(string,start,length);返回字符串的一部分
  23. return $rands;
  24. }
  25. 第五种开始创建验证码(直接用函数生成,比较方便快捷)
  26. 1
  27. $code = rand(10000, 99999);
  28. php mt_rand生成0~1随机小数的效果比较
  29. lcg_value说明
  1. lcg_value说明
  2. float lcg_value ( void )
  3. lcg_value() 返回范围为 (0, 1) 的一个伪随机数。本函数组合了周期为 2^31 - 85 2^31 - 249 的两个同余发生器。本函数的周期等于这两个素数的乘积。
  4. 返回:范围为 (0, 1) 的伪随机数。
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. <?php
  7. for($i=0; $i<5; $i++){
  8. echo lcg_value().PHP_EOL;
  9. }
  10. ?>
  1. 输出:
  2. 0.11516515851995
  3. 0.064684551575297
  4. 0.68275174031189
  5. 0.55730746529099
  6. 0.70215008878091
  7. 两种生成0~1随机小数方法进行比较
  8. 1.执行时间比较
  9. 执行10万次基于mt_rand()与mt_getrandmax()算法的运行时间
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. <?php
  33. /**
  34. * 生成0~1随机小数
  35. * @param Int $min
  36. * @param Int $max
  37. * @return Float
  38. */
  39. function randFloat($min=0, $max=1){
  40. return $min + mt_rand()/mt_getrandmax() * ($max-$min);
  41. }
  42. // 获取microtime
  43. function get_microtime(){
  44. list($usec, $sec) = explode(' ', microtime());
  45. return (float)$usec + (float)$sec;
  46. }
  47. // 记录开始时间
  48. $starttime = get_microtime();
  49. // 执行10万次获取随机小数
  50. for($i=0; $i<100000; $i++){
  51. randFloat();
  52. }
  53. // 记录结束时间
  54. $endtime = get_microtime();
  55. // 输出运行时间
  56. printf("run time %f ms\r\n", ($endtime-$starttime)*1000);
  57. ?>
  1. 输出:
  2. run time 266.893148 ms
  3. 执行10万次lcg_value()的运行时间
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. <?php
  27. // 获取microtime
  28. function get_microtime(){
  29. list($usec, $sec) = explode(' ', microtime());
  30. return (float)$usec + (float)$sec;
  31. }
  32. // 记录开始时间
  33. $starttime = get_microtime();
  34. // 执行10万次获取随机小数
  35. for($i=0; $i<100000; $i++){
  36. lcg_value();
  37. }
  38. // 记录结束时间
  39. $endtime = get_microtime();
  40. // 输出运行时间
  41. printf("run time %f ms\r\n", ($endtime-$starttime)*1000);
  42. ?>
  1. 输出:
  2. run time 86.178064 ms
  3. 执行时间上比较,因为lcg_value()直接是php原生方法,而mt_rand()与mt_getrandmax()需要调用两个方法,并需要进行计算,因此lcg_value()的执行时间大约快3倍。
  4. 2.随机效果比较
  5. 基于mt_rand()与mt_getrandmax()算法的随机效果
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. <?php
  31. /**
  32. * 生成0~1随机小数
  33. * @param Int $min
  34. * @param Int $max
  35. * @return Float
  36. */
  37. function randFloat($min=0, $max=1){
  38. return $min + mt_rand()/mt_getrandmax() * ($max-$min);
  39. }
  40. header('content-type: image/png');
  41. $im = imagecreatetruecolor(512, 512);
  42. $color1 = imagecolorallocate($im, 255, 255, 255);
  43. $color2 = imagecolorallocate($im, 0, 0, 0);
  44. for($y=0; $y<512; $y++){
  45. for($x=0; $x<512; $x++){
  46. $rand = randFloat();
  47. if(round($rand,2)>=0.5){
  48. imagesetpixel($im, $x, $y, $color1);
  49. }else{
  50. imagesetpixel($im, $x, $y, $color2);
  51. }
  52. }
  53. }
  54. imagepng($im);
  55. imagedestroy($im);
  56. ?>
  1. lcg_value()的随机效果
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. <?php
  20. header('content-type: image/png');
  21. $im = imagecreatetruecolor(512, 512);
  22. $color1 = imagecolorallocate($im, 255, 255, 255);
  23. $color2 = imagecolorallocate($im, 0, 0, 0);
  24. for($y=0; $y<512; $y++){
  25. for($x=0; $x<512; $x++){
  26. $rand = lcg_value();
  27. if(round($rand,2)>=0.5){
  28. imagesetpixel($im, $x, $y, $color1);
  29. }else{
  30. imagesetpixel($im, $x, $y, $color2);
  31. }
  32. }
  33. }
  34. imagepng($im);
  35. imagedestroy($im);
  36. ?>
  1. 3.随机阅读推荐
  2. + php给源码加密的方法总结:https://www.jb51.net/article/134506.html
  3. 以上就是如何在PHP中生成随机数的详细内容
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议