Created
July 13, 2015 18:32
-
-
Save webkader/09a8252a4487e543bb0f to your computer and use it in GitHub Desktop.
Check if a string is a valid email
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isValidEmail($email) | |
{ | |
if (empty($email)) { | |
return false; | |
} | |
if (filter_var($email, FILTER_VALIDATE_EMAIL)) { | |
if (@count(explode("@", $email)) != 2) { | |
return false; | |
} else { | |
return true; | |
} | |
} else { | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment