Skip to content

Instantly share code, notes, and snippets.

@Arbagen
Last active October 26, 2018 08:46
Show Gist options
  • Save Arbagen/53b75cb522f5f18a23b46dd83ded6fc9 to your computer and use it in GitHub Desktop.
Save Arbagen/53b75cb522f5f18a23b46dd83ded6fc9 to your computer and use it in GitHub Desktop.
email regex
^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}
preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $email)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment