随机创建密码
Posted zhyphp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机创建密码相关的知识,希望对你有一定的参考价值。
很多开发者在创建密码的时候想找个网站随机生成密码,不过这个代码也很简单,随机生成
<?php
$abc = new test();
echo $abc->getRandChar(10);//随机生成位数
class test
{
public function getRandChar($length)
{
$str = null;
$strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";//生成元素
$max = strlen($strPol) - 1;
for ($i = 0; $i < $length; $i++) {
$str .= $strPol[rand(0, $max)];
}
return $str;
}
}
以上是关于随机创建密码的主要内容,如果未能解决你的问题,请参考以下文章