最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
密码随机函数
时间:2022-07-02 09:17:03 编辑:袖梨 来源:一聚教程网
function make_password()
{$pw_length=24;//密码长度
$low_ascii_bound=50;
$upper_ascii_bound=122;
$notuse=array(58,59,60,61,62,63,64,73,79,91,92,93,94,95,96,108,111);
while($i<$pw_length)
{mt_srand((double)microtime()*1000000);
$randnum=mt_rand($low_ascii_bound,$upper_ascii_bound);
if(!in_array($randnum,$notuse))
{$password1=$password1.chr($randnum);
$i ;
}
}
return $password1;}
$password=make_password();//调用
?>
相关文章
- 抖音春节红包怎么领取 06-05
- 12306会员积分兑换手续费是多少 06-05
- 世界上最大的内陆国是哪个国家 06-05
- 小触控如何进行录屏 06-05
- 漫蛙怎么关闭手机管家报毒 06-05
- 鄂汇办app生育备案登记位置在哪 06-05