返回列表 發帖

亂數密碼產生器

<?php
//亂數密碼產生器
function generatorPassword($pt=8,$myWord=""){
        $password="";
        $str="0123456789abcdefghijklmnopqrstuvwxyz";
        $str.=$myWord;
        $str_len=strlen($str);
for ($i=1;$i<=$pt;$i++){       
                $rg=rand()%$str_len;
                $password.=$str{$rg};
        }
return $password;
}
//避開強式密碼 < 在html消失
//header("Content-Type: text;");


echo generatorPassword();

/*
預設八個字元,設定10個字元
generatorPassword(10,<);
*/
?>
May

提示: 作者被禁止或刪除 內容自動屏蔽

TOP

返回列表