从国外网站找到的一款php随机密码生成程序哦,先是可以定义基数,然后再利用mt_rand与substr进来取第N个字符。
- <?php
- function genPwd($length=6) {
- $password = '';
- $possible = '23456789bcdfghjkmnpqrstvwxyz';
- $i = 0;
- while ($i < $length) {
-
- $password .= substr($possible, mt_rand(0, strlen($possible)-1), 1);
- $i++;
- }
-
- return $password;
- }
- ?>
测试方法,代码如下:
- <?php
- $password = genPwd(8);
- ?>
|