0

可能重复:
字母、数字和 - _ 的正则表达式

我正在用 PHP 创建一个注册表单,需要确保用户的用户名不包含不需要的字符。无论如何我可以创建一个返回 true 的函数A-Z a-z 0-9 - . _

此外,我不希望用户的电子邮件来自雅虎,因为出于某种原因他们拒绝发送的确认电子邮件。除了__FILTER_VALIDATE_EMAIL__我需要添加什么?

PS:我上面提到的人物有什么问题吗?我注意到 gmail 不只允许-_. YouTube 只有字母数字字符。

4

4 回答 4

8

编辑为使用 \w 而不是 a-zA-Z0-9_

if(preg_match("/[^\w-.]/", $user)){
    // invalid character
}
if(!filter_var($email, FILTER_VALIDATE_EMAIL) || strstr($email,'@yahoo.com')) {
    // either invalid email, or it contains in @yahoo.com
}
于 2012-10-09T20:46:36.620 回答
2
if(preg_match("/[^-A-Za-z0-9._ ]/", $userName)){
    // there are one or more of the forbidden characters (the set of which is unknown)
}
于 2012-10-09T20:41:23.513 回答
2
<?php

    // The validator class

    class Validator
    {
        public function isValidUsername($username)
        {
            if(preg_match('/^[a-zA-Z0-9_\-\.]+$/', $username)) {
                return true;    
            }
            return false;
        }

        public function isYahooMail($mail) {
            if(preg_match('/^[a-zA-Z0-9_\-\.]+@yahoo.com$/', $mail)) {
                return true;    
            }
            return false;
        }
    }

    // The way to use this class

    $username = "otporan_123";
    $email = "otporan@gmail.com";

    $badUsername = "otporan*bad";
    $yahooEmail = "otporan@yahoo.com";

    $validator = new Validator();

    var_export($validator->isValidUsername($username));
    echo "<br />";

    var_export($validator->isValidUsername($badUsername));
    echo "<br />";

    var_export($validator->isYahooMail($email));
    echo "<br />";

    var_export($validator->isYahooMail($yahooEmail));
    echo "<br />";  

?>

此代码将返回: true false false true

这是一个类,但如果您喜欢过程代码,您可以查看方法中发生的事情并编写自己的函数:)

希望这可以帮助!

于 2012-10-09T20:51:53.327 回答
-1
if (!preg_match('/\w\-/', $username) {
    //throw error 
}
于 2012-10-09T20:44:42.467 回答