本文实例讲述了PHP判断密码强度的方法。分享给大家供大家参考,具体如下:
一、php页面
$score = 0;
if(!empty($_GET['value'])){ //接收的值
$str = $_GET['value'];
} else{
$str = '';
}
if(preg_match("/+/",$str))
{
$score ++;
}
if(preg_match("/{3,}/",$str))
{
$score ++;
}
if(preg_match("/+/",$str))
{
$score ++;
}
if(preg_match("/{3,}/",$str))
{
$score ++;
}
if(preg_match("/+/",$str))
{
$score ++;
}
if(preg_match("/{3,}/",$str))
{
$score ++;
}
if(preg_match("/+/",$str))
{
$score += 2;
}
if(preg_match("/{3,}/",$str))
{
$score ++ ;
}
if(strlen($str) >= 10)
{
$score ++;
}
echo $score;
exit;
页:
[1]