随机密码发生器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机密码发生器相关的知识,希望对你有一定的参考价值。

  1. function generatePassword($length=9, $strength=0) {
  2. $vowels = 'aeuy';
  3. $consonants = 'bdghjmnpqrstvz';
  4. if ($strength & 1) {
  5. $consonants .= 'BDGHJLMNPQRSTVWXZ';
  6. }
  7. if ($strength & 2) {
  8. $vowels .= "AEUY";
  9. }
  10. if ($strength & 4) {
  11. $consonants .= '23456789';
  12. }
  13. if ($strength & 8) {
  14. $consonants .= '@#$%';
  15. }
  16.  
  17. $password = '';
  18. $alt = time() % 2;
  19. for ($i = 0; $i < $length; $i++) {
  20. if ($alt == 1) {
  21. $password .= $consonants[(rand() % strlen($consonants))];
  22. $alt = 0;
  23. } else {
  24. $password .= $vowels[(rand() % strlen($vowels))];
  25. $alt = 1;
  26. }
  27. }
  28. return $password;
  29. }

以上是关于随机密码发生器的主要内容,如果未能解决你的问题,请参考以下文章

随机密码是啥?

你好,随机密码是啥啊

php随机密码函数的实例代码

随机密码

通过pwgen创建随机密码

如何使用Linux命令生成随机密码?