4 ways to generate random passwords with PHP and performance comparison

WBOY
Release: 2016-08-08 09:23:46
Original
921 people have browsed it

Using PHP to develop applications, especially website programs, often requires generating random passwords. For example, a random password is generated for user registration, and a random password is also required for user reset password. A random password is a string of fixed length. Here I have collected several methods of generating random strings for your reference.

4 ways to generate random passwords with PHP and performance comparison

Method 1:

1. Generate a random integer from 33 – 126, such as 35,

2. Convert 35 into the corresponding ASCII code character, such as 35 corresponding to #

3. Repeat the above 1 , 2 steps n times, concatenate into n-digit password

This algorithm mainly uses two functions. The mt_rand (int $min, int $max) function is used to generate random integers, where $min – $max is the ASCII code. Range, here is 33-126, you can adjust the range as needed. For example, 97-122 bits in the ASCII code table correspond to the English letters a-z. For details, please refer to the ASCII code table; chr (int $ascii) function is used to convert the corresponding integer Convert $ascii to the corresponding characters.

view sourceprint?

  1. function create_password($pw_length = 8) 
  2.     $randpwd = ''
  3.     for ($i = 0; $i < $pw_length; $i++)
  4. {
  5. $randpwd .= chr(mt_rand(33, 126));
  6. }
  7. return $randpwd;
  8. }
  9. // 调用该函数,传递长度参数$pw_length = 6
  10. echo create_password(6);
Copy after login

Method 2:

1. Preset a string $chars, including a – z, A – Z, 0 – 9, and some special characters

2 , Randomly pick a character from the $chars string

3. Repeat the second step n times to get a password of length n

view sourceprint?

  1. function generate_password( $length = 8 ) {
  2. // 密码字符集,可任意添加你需要的字符
  3. $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()-_ []{}<>~`+=,.;:/?|'
  4.  
  5.     $password = ''
  6.     for ( $i = 0; $i < $length; $i++ )
  7. {
  8. // 这里提供两种字符获取方式
  9. // 第一种是使用 substr 截取$chars中的任意一位字符;
  10. // 第二种是取字符数组 $chars 的任意元素
  11. // $password .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
  12. $password .= $chars[ mt_rand(0, strlen($chars) - 1) ];
  13. }
  14. return $password;
  15. }
Copy after login

Method 3:

1. Preset a character array $chars, including a – z, A – Z, 0 – 9, and some special characters

2. Use array_rand() to randomly select $length elements from the array $chars

3. According to the acquired key name array $keys, extract the characters from the array $chars and concatenate the string. The disadvantage of this method is that the same characters will not be retrieved repeatedly.

view sourceprint?

  1. function make_password( $length = 8 )
  2. {
  3. // 密码字符集,可任意添加你需要的字符
  4. $chars = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
  5. 'i', 'j', 'k', 'l','m', 'n', 'o', 'p', 'q', 'r', 's',
  6. 't', 'u', 'v', 'w', 'x', 'y','z', 'A', 'B', 'C', 'D',
  7. 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L','M', 'N', 'O',
  8. 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y','Z',
  9. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!',
  10. '@','#', '$', '%', '^', '&', '*', '(', ')', '-', '_',
  11. '[', ']', '{', '}', '<', '>''~''`''+''='',',  
  12.     '.'';'':''/''?''|'); 
  13.  
  14.     // 在 $chars 中随机取 $length 个数组元素键名 
  15.     $keys = array_rand($chars$length);  
  16.  
  17.     $password = ''
  18.     for($i = 0; $i < $length; $i++)
  19. {
  20. // 将 $length 个数组元素连接成字符串
  21. $password .= $chars[$keys[$i]];
  22. }
  23. return $password;
  24. }
Copy after login

Method 4:

This method is a new method provided by a netizen after this article was reprinted by Blue Ideal. The algorithm is simple and the code is short, just because md5() Because of the return value of the function, the generated password only includes letters and numbers, but it is still a good method. Algorithm idea:

1. time() obtains the current Unix timestamp

2. Encrypt the timestamp obtained in the first step with md5()

3. Intercept n bits of the encrypted result in the second step. Wanted password

view sourceprint?

  1. function get_password( $length = 8 )
  2. {
  3. $str = substr(md5(time()), 0, 6);
  4. return $str;
  5. }
Copy after login

Time efficiency comparison

We use the following PHP code to calculate the running time of the above 4 random password generation functions to generate a 6-digit password, and then compare their A simple comparison of time efficiency.

view sourceprint?

  1. function getmicrotime()
  2. {
  3. list($usec, $sec) = explode(" ",microtime());
  4. return ((float)$usec + (float)$sec);
  5. }
  6. // 记录开始时间
  7. $time_start = getmicrotime();
  8. // 这里放要执行的PHP代码,如:
  9. // echo create_password(6);
  10. // 记录结束时间
  11. $time_end = getmicrotime();
  12. $time = $time_end - $time_start;
  13. // 输出运行总时间
  14. echo "执行时间 $time seconds";
  15. ?> 
Copy after login

The final result is:

Method one: 9.8943710327148E-5 seconds

Method two: 9.6797943115234E-5 seconds

Method Three: 0.00017499923706055 seconds

Method 4: 3.4093856811523E-5 seconds

It can be seen that the execution time of method 1 and method 2 are similar. Method 4 has the shortest running time, while method 3 has a slightly longer running time.

The above introduces the four methods of generating random passwords in PHP and their performance comparison, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!