PHP判断密码安全等级程序
密码安全我们看到最多的就是在网上的js验证安全级别了,其实高级点的肯定是通过后端进行验证了,下面给各位一个php例子.
密码安全原理
0:低,1:中,2:高三个级别,千万不要用百分比具体就不说,强度我们从最简单的纯数字到数字英文及最高级的数字英文及特殊字符,代码如下:
- /**
- * 获取密码安全等级
- * @param string $password 密码
- * @return int 0:低,1:中,2:高
- */
- function password_level($password){
- if(<a href="/tags.php/preg_match/" target="_blank">preg_match</a>('/^([0-9]{6,16})$/',$password)){
- //开源软件:phpfensi.com
- return 0;
- }else if(preg_match('/^[0-9 a-z]{6,16}$/',$password)){
- return 1;
- }else if(preg_match('/^[0-9 a-z A-Z !@#$%^&*]{6,16}$/',$password)){
- return 2;
- }
- return 0;
- }