PHP 亂數密碼產生器

Sample 1:
function randStr($len=6)
{
$chars=’ABDEFGHJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*’;
// characters to build the password from
mt_srand((double)microtime()*1000000*getmypid());
// seed the random number generater (must be done)
$password=”;
while(strlen($password)<$len)
$password.=substr($chars,(mt_rand()%strlen($chars)),1);
return $password;
}

Sample 2:
function generatorPassword()
{
$password_len = 7;
$password = ”;

// remove o,0,1,l
$word = 在Lubuntu的chromium中安裝Flash (2012-11-09)

  • 實在太好笑了…FB註冊出現「You are ineligible to register for Facebook.」 (2012-05-15)
  • FAUST加密勒索病毒 不僅僅是加密,還弄壞了我的NAS (2023-02-22)
  • 桃園復興鄉小烏來天空步道sucks! (2011-07-10)
  • 羅睺日 & 殺師時 (2013-01-07)
  • 隨機美圖

    發佈留言

    發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *