コードを実装し、コピーして使用します:
header("Content-type:text/html;charset=utf-8");
function getRandPass($length = 6){
$password = ' ' ;
//以下の文字列に必要な文字を追加します。デフォルトは 0 ~ 9 の数字と 26 文字の英字です
$chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; $char_len = strlen($chars); 0;$i<$length;$i++){
$loop = mt_rand(0, ($char_len-1));
//この文字列を配列として扱い、ランダムに文字を取り出してループにつなぎます必要な桁数に置き換えます
$password .= $chars[$loop];
}
return $password;
}
echo getRandPass(12) // 12 桁のパスワードをランダムに生成します
?>
http://www.bkjia.com/PHPjc/768134.html