Skip to content

Instantly share code, notes, and snippets.

@shameerc
Created December 10, 2010 05:47
Show Gist options
  • Save shameerc/735839 to your computer and use it in GitHub Desktop.
Save shameerc/735839 to your computer and use it in GitHub Desktop.
Simple email valiation
<?php
// This function uses simple filter_var function
// instead of regular expression to validate email
// @param string email Email address to be validated
function validateEmail($email) {
return filter_var($email, FILTER_VALIDATE_EMAIL);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment