Quantcast
Channel: Marius' Blog » PHP
Viewing all articles
Browse latest Browse all 5

PHP Email Validation

$
0
0

Below PHP function returns true if the email address given as parameter is valid, false otherwise.

PHP code:

function validEmail($email){
    if (preg_match("/^[a-z0-9&\'\.\-_\+]+@[a-z0-9\-]+\.([a-z0-9\-]+\.)*+[a-z]{2}/is", $email)){
        return true;
    }
    else{
        return false;
    }
}

Viewing all articles
Browse latest Browse all 5

Trending Articles