PHP计算密码强度的实例
实例代码如下:
实例代码如下:
<?php
function 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');
特别声明:以上内容(如有图片或视频亦包括在内)为本平台用户上传并发布,本平台仅提供信息存储服务。举报




