實現代碼,復制即用:
<?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位數的密碼
?>