malike 发表于 2018-2-11 11:54:16


            本文实例讲述了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]
查看完整版本: PHP判断密码强度的方法详解