How can I validate the input value is a valid email address using php5. Now I am using this code

function isValidEmail($email){ 
     $pattern = "^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$"; 

     if (eregi($pattern, $email)){ 
        return true; 
     } 
     else { 
        return false; 
     }    
} 

but it shows deprecated error. How can I fix this issue. Please help me.

link|improve this question

2  
The correct answer was already given, but regarding the deprecated issue: The usage of POSIX regular expressions (which eregi is a function of) is deprecated. Use PCRE instead. – Felix Kling May 2 '11 at 10:09
3  
By the way, your regex is totally wrong. Some totally valid adresses will be marked as invalid by your function. Filtering email adresses with a regex is a nightmare. – Artefact2 May 2 '11 at 10:19
feedback

2 Answers

up vote 30 down vote accepted

You can use the filter_var() function, which gives you a lot of handy validation and sanitization options.

filter_var($email, FILTER_VALIDATE_EMAIL)

PHP Manual filter_var()

If you don't want to change your code that relied on your function, just do:

function isValidEmail($email){ 
    return filter_var($email, FILTER_VALIDATE_EMAIL);
}

Available in PHP >= 5.2.0

Note: For other uses (where you need Regex), the deprecated ereg function family (POSIX Regex Functions) should be replaced by the preg family (PCRE Regex Functions). There are a small amount of differences, reading the Manual should suffice.

link|improve this answer
2  
+1 That said, you might want to mention that this is only available in PHP 5.2.x and above. :-) – middaparka May 2 '11 at 10:09
5  
@middaparka: As the OP gets a deprecated message for eregi, it seems he is using PHP 5.3. But yes, it is important to mention it (for others)). – Felix Kling May 2 '11 at 10:10
@middaparka Thanks, I added it. I left it out for the same reason what @Felix explained, but yes, others might be interested. – bažmegakapa May 2 '11 at 10:12
1  
PHP 5.3.3 and 5.2.14 had a bug (bugs.php.net/52929) related to FILTER_VALIDATE_EMAIL, which resulted in segfault when validating large values. Simple and safe workaround for this is using strlen() before filter_val(). I'm not sure about 5.3.4 final, but it is written that some 5.3.4-snapshot versions also were affected. – binaryLV May 2 '11 at 10:39
@binaryLV Yes, thanks for mentioning it. – bažmegakapa May 2 '11 at 10:46
feedback

See the notes at http://www.php.net/manual/en/function.ereg.php:

Note:

As of PHP 5.3.0, the regex extension is deprecated in favor of the PCRE extension. Calling this function will issue an E_DEPRECATED notice. See the list of differences for help on converting to PCRE.

Note:

preg_match(), which uses a Perl-compatible regular expression syntax, is often a faster alternative to ereg().

link|improve this answer
+1 I was working on incorporating this to my answer also. – bažmegakapa May 2 '11 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.