我是疯子 我怕谁?

所有的东西都是乱弹和自己的技术积累和网络见闻

在php中随机生成密码

tcsm | 10 四月, 2006 18:46

说明:
1. 可以在'$possible_charactors'中加入更多字符、数字。
2. 可以改变这个密码串的长度,例如,
echo 'Random_Password(16);' 可以生成16位字符串.

程序代码:

<?
function Random_Password($length) {
srand(date("s"));
$possible_charactors = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
$string = "";
while(strlen($string)<$length) {
$string .= substr($possible_charactors,(rand()%(strlen($possible_charactors))),1);
}
return($string);
}
echo Random_Password(8);
?>

评论

发表评论
 authimage
 
Accessible and Valid XHTML 1.0 Strict and CSS
Powered by LifeType - Design by BalearWeb