欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php生成随机密码的几种方法

程序员文章站 2024-01-05 16:52:16
...
<p>使用PHP开发应用程序,尤其是网站程序,常常需要生成随机密码,如用户注册生成随机密码,用户重置密码也需要生成一个随机的密码。随机密码也就是一串固定长度的字符串,这里我收集整理了几种生成随机字符串的方法,以供大家参考。&nbsp;<br/>php生成随机密码的方法一:&nbsp;<br/><br/>1、在 33 – 126 中生成一个随机整数,如 35,&nbsp;<br/><br/>2、将 35 转换成对应的ASCII码字符,如 35 对应 #&nbsp;<br/><br/>3、重复以上 1、2 步骤 n 次,连接成 n 位的密码&nbsp;<br/><br/>该算法主要用到了两个函数,mt_rand ( int $min , int $max )函数用于生成随机整数,其中 $min – $max 为 ASCII 码的范围,这里取 33 -126 ,可以根据需要调整范围,如ASCII码表中 97 – 122 位对应 a – z 的英文字母,具体可参考 ASCII码表; chr ( int $ascii )函数用于将对应整数 $ascii 转换成对应的字符。&nbsp;<br/><br/>function create_password($pw_length =&nbsp;<br/>{&nbsp;<br/>&nbsp;&nbsp;&nbsp; $randpwd = &#39;&#39;;&nbsp;<br/>&nbsp;&nbsp;&nbsp; for ($i = 0; $i &lt; $pw_length; $i++)&nbsp;<br/>&nbsp;&nbsp;&nbsp; {&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $randpwd .= chr(mt_rand(33, 126));&nbsp;<br/>&nbsp;&nbsp;&nbsp; }&nbsp;<br/>&nbsp;&nbsp;&nbsp; return $randpwd;&nbsp;<br/>}&nbsp;<br/><br/>// 调用该函数,传递长度参数$pw_length = 6&nbsp;<br/>echo create_password(6);&nbsp;<br/><br/>php生成随机密码的方法二:&nbsp;<br/><br/>1、预置一个的字符串 $chars ,包括 a – z,A – Z,0 – 9,以及一些特殊字符&nbsp;<br/><br/>2、在 $chars 字符串中随机取一个字符&nbsp;<br/><br/>3、重复第二步 n 次,可得长度为 n 的密码&nbsp;<br/><br/>function generate_password( $length = 8 ) {&nbsp;<br/>&nbsp;&nbsp;&nbsp; // 密码字符集,可任意添加你需要的字符&nbsp;<br/>&nbsp;&nbsp;&nbsp; $chars = &#39;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&amp;*()-_ []{}&lt;&gt;~`+=,.;:/?|&#39;;&nbsp;<br/><br/>&nbsp;&nbsp;&nbsp; $password = &#39;&#39;;&nbsp;<br/>&nbsp;&nbsp;&nbsp; for ( $i = 0; $i &lt; $length; $i++ )&nbsp;<br/>&nbsp;&nbsp;&nbsp; {&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 这里提供两种字符获取方式&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 第一种是使用 substr 截取$chars中的任意一位字符;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 第二种是取字符数组 $chars 的任意元素&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // $password .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $password .= $chars[ mt_rand(0, strlen($chars) - 1) ];&nbsp;<br/>&nbsp;&nbsp;&nbsp; }&nbsp;<br/><br/>&nbsp;&nbsp;&nbsp; return $password;&nbsp;<br/>}</p>

上一篇:

下一篇: