PHP判断密码安全等级程序

密码安全我们看到最多的就是在网上的js验证安全级别了,其实高级点的肯定是通过后端进行验证了,下面给各位一个php例子.

密码安全原理

0:低,1:中,2:高三个级别,千万不要用百分比具体就不说,强度我们从最简单的纯数字到数字英文及最高级的数字英文及特殊字符,代码如下:

  1. /**
  2. * 获取密码安全等级
  3. * @param string $password 密码
  4. * @return int 0:低,1:中,2:高
  5. */
  6. function password_level($password){
  7. if(<a href="/tags.php/preg_match/" target="_blank">preg_match</a>('/^([0-9]{6,16})$/',$password)){
  8. //开源软件:phpfensi.com
  9. return 0;
  10. }else if(preg_match('/^[0-9 a-z]{6,16}$/',$password)){
  11. return 1;
  12. }else if(preg_match('/^[0-9 a-z A-Z !@#$%^&*]{6,16}$/',$password)){
  13. return 2;
  14. }
  15. return 0;
  16. }