18

パスワードチェックスクリプトを作成しようとしています。次のような電子メール(許可されていない文字)のチェックが既にあります。

  public function checkEmail($email)
  {
    if (filter_var($email, FILTER_VALIDATE_EMAIL))
      return true;
    else
      return false;   
  }

そのため、パスワードに少なくとも 1 つの英数字、1 つの数字、および最小 8 文字が含まれていることを確認し、エラー メッセージも表示するパスワード検証機能を探しています。

4

1 に答える 1

81
public function checkPassword($pwd, &$errors) {
    $errors_init = $errors;

    if (strlen($pwd) < 8) {
        $errors[] = "Password too short!";
    }

    if (!preg_match("#[0-9]+#", $pwd)) {
        $errors[] = "Password must include at least one number!";
    }

    if (!preg_match("#[a-zA-Z]+#", $pwd)) {
        $errors[] = "Password must include at least one letter!";
    }     

    return ($errors == $errors_init);
}

これの編集版: http://www.cafewebmaster.com/check-password-strength-safety-php-and-regex

于 2012-05-25T10:47:11.647 に答える