Is email valid. Validate email address in PHP


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function is_email_valid($email)
  2. {
  3. return (preg_match("/[-a-zA-Z0-9_.+]+@[a-zA-Z0-9-]{2,}\.[a-zA-Z]{2,}/", $email) > 0) ? true : false;
  4. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.