Skip to content

Instantly share code, notes, and snippets.

@kferran
Created January 11, 2013 22:43
Show Gist options
  • Save kferran/4514622 to your computer and use it in GitHub Desktop.
Save kferran/4514622 to your computer and use it in GitHub Desktop.
function validate_email_address($email) {
return filter_var($email, FILTER_VALIDATE_EMAIL) && preg_match('/@.+\./', $email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment