Maison >développement back-end >tutoriel php >php随机密码生成器

php随机密码生成器

WBOY
WBOYoriginal
2016-07-25 08:43:071360parcourir
  1. function auth_pwgen(){
  2. $pw = '';
  3. $c = 'bcdfghjklmnprstvwz'; //consonants except hard to speak ones
  4. $v = 'aeiou'; //vowels
  5. $a = $c.$v; //both
  6. //use two syllables...
  7. for($i=0;$i $pw .= $c[rand(0, strlen($c)-1)];
  8. $pw .= $v[rand(0, strlen($v)-1)];
  9. $pw .= $a[rand(0, strlen($a)-1)];
  10. }
  11. //... and add a nice number
  12. $pw .= rand(10,99);
  13. return $pw;
  14. }
复制代码

php


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn