Skip to content

Instantly share code, notes, and snippets.

@dflima
Created October 4, 2013 21:17
Show Gist options
  • Save dflima/6832922 to your computer and use it in GitHub Desktop.
Save dflima/6832922 to your computer and use it in GitHub Desktop.
Email validation
<?php
function validate_email($email) {
if (filter_var($email, FILTER_VALIDATE_EMAIL))
return true;
return false;
}
var_dump(validate_email("me@example.com"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment