Skip to content

Instantly share code, notes, and snippets.

@webkader
Created July 13, 2015 18:32
Show Gist options
  • Save webkader/09a8252a4487e543bb0f to your computer and use it in GitHub Desktop.
Save webkader/09a8252a4487e543bb0f to your computer and use it in GitHub Desktop.
Check if a string is a valid email
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