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 = 16G USB隨身碟掛載在Ubuntun上 (2012-12-24)

  • 不要以為有3G訊號就一定可以上網 (2010-06-01)
  • 鼎新 ERP發信通知機制 實在有夠爛的 (2019-04-19)
  • 欠電的網樂通 退機要退多久才要來收走啊? (2012-07-11)
  • Joomla 3.x 怎麼搬家? (2014-11-17)
  • 隨機美圖

    發佈留言

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