php產生強密碼的程式

WBOY
發布: 2016-07-25 09:04:20
原創
1086 人瀏覽過
  1. /**

  2. php生成强密码
  3. linK:bbs.it-home.org 2013/3/2
  4. */
  5. $password_length = 9;

  6. function make_seed() {

  7. list($usec, $sec) = explode(’ ‘, microtime());
  8. return (float) $sec + ((float) $usec * 100000);
  9. }

  10. srand(make_seed());

  11. $alfa = “1234567890qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM”;

  12. $token = “”;
  13. for($i = 0; $i < $password_length; $i ++) {
  14. $token .= $alfa[rand(0, strlen($alfa))];
  15. }
  16. echo $token;

  17. //方法2

  18. // Create Password
  19. $totalChar = 8; // number of chars in the password
  20. $salt = “abcdefghijklmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ123456789″; // salt to select chars from
  21. srand((double)microtime()*1000000); // start the random generator
  22. $Spass=””; // set the inital variable
  23. for ($i=0;$i<$totalChar;$i++) // loop and create password
  24. $Spass = $Spass . substr ($salt, rand() % strlen($salt), 1);

复制代码


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!