「PHP」ランダムパスワードを生成するようにカスタマ関数

<?php
header(“Content-type:text/html;charset=utf-8″);
function getRandPass($length = 6){
$password = ";
//ディフォルトは数字0~9、26個アルファベット
$chars = “0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
$char_len = strlen($chars);
for($i=0;$i<$length;$i++){
$loop = mt_rand(0, ($char_len-1));
//文字列は配列として、ランダムな文字を抽出
$password .= $chars[$loop];
}
return $password;
}
echo getRandPass(12); //ランダム12桁のパスワードを生成随机生成一个12位数的密码
?>

Source

Posted by arkgame