用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php 自定生成随机密码函数

时间:2015-01-23  来源:西部数据  作者:西部数据
  1. / * 
  2. 用法:$ new_password = return_password(); 
  3. 示例:生成密码:2X5bjj2z,ERgid62Y,p2sHtDPv 
  4. * /  
  5. function return_password () { 
  6.  
  7. // set password length  
  8. $pw_length = 8;  
  9. // set ASCII range for random character generation  
  10. $low_ascii_bound = 50; // "2"  
  11. $upper_ascii_bound = 122; // "z" 
  12. //开源代码phpfensi.com 
  13. // Exclude special characters and some confusing alphanumerics 
  14.  
  15. 排除一些特殊字符和字母数字混淆 
  16. // o,O,0,I,1,l etc  
  17. $notuse = array (58,59,60,61,62,63,64,73,79,91,92,93,94,95,96,108,111); 
  18.  
  19. while ($i < $pw_length) {  
  20. mt_srand ((double)microtime() * 1000000);  
  21. // random limits within ASCII table  
  22. $randnum = mt_rand ($low_ascii_bound$top_ascii_bound);  
  23. if (!in_array ($randnum$notuse)) {  
  24. $password = $password . chr($randnum);  
  25. $i++;  
  26. }  
  27.  
  28. return $password;  
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门