两个产生随机密码函数: 函数一: function randomPassword($passwordLength = 8){ $str = "abcefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"; if($passwordLength > strlen($str)) $passwordLength = strlen($str); if($passwordLength < 8) $passwordLength = 8; $start = mt_rand(1, (strlen($str) - $passwordLength)); $string = str_shuffle($str); $password = substr($string, $start, $passwordLength); return($password);} 函数二: function randomPassword($passwordLength=8){ //密码字符串 define("PASS_STRING","ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"); if($passwordLength < 8) $passwordLength = 8; for($i = 1; $i <= $passwordLength; $i++) { $randomPosition = rand(0, strlen(PASS_STRING)-1); $password .= substr(PASS_STRING, $randomPosition, 1); } return $password;} 相关文章: 2022-12-23 2022-01-15 2021-12-09 2021-10-28 2021-07-02 2021-10-06 2021-07-20