產生一個隨機密碼的函數,產生密碼為小寫字母與數字的隨機字串,長度可自訂。
複製程式碼如下:
/*
* php自動產生新密碼自訂函數(含實例示範)
聯絡方式: xujiaphp@gmail.com
* */
function genPassword($min = 5, $max = 8)
{ $max_char=strlen($validchars)-1;
$length=mt_rand($min,$max);
$password = "";
for($i=0;$i }
return $password;
} Password(5,10)."
";
?>