Advertisement
reenadak

Email validator

Feb 20th, 2018
713
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1.     /*
  2.     - Email validator
  3.     - Ensures an email is valid in the format of user@example.com
  4.    
  5.     $email     - The email address to validate
  6.     */
  7.    
  8.     function validateEmail($email)
  9.     {
  10.         if(filter_var($email, FILTER_VALIDATE_EMAIL)) return true;
  11.         return false;
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement