不少时候我们在注册表单信息的时候会发现一种功能,能显示你注册信息的密码强度,这样的效果是如何实现的呢?下面361模板就以PHP程序为例,来简单演示下PHP程序计算密码强度的实例。代码如下:
<?phpfunction password_strength($str) { $score = 0; if (preg_match("/[0-9]+/", $str)) { $score++; } if (preg_match("/[0-9]{3,}/", $str)) { $score++; } if (preg_match("/[a-z]+/", $str)) { $score++; } if (preg_match("/[a-z]{3,}/", $str)) { $score++; } if (preg_match("/[A-Z]+/", $str)) { $score++; } if (preg_match("/[A-Z]{3,}/", $str)) { $score++; } if (preg_match("/[_|/-|+|=|*|!|@|#|$|%|^|&|(|)]+/", $str)) { $score+= 2; } if (preg_match("/[_|/-|+|=|*|!|@|#|$|%|^|&|(|)]{3,}/", $str)) { $score++; } if (strlen($str) >= 10) { $score++; } return $score;}echo password_strength('admin888');
新闻热点
疑难解答