How do I validate an email address using PHP?

| | | | | | | | | |

👻 Check our latest review to choose the best laptop for Machine Learning engineers and Deep learning tasks!

Method 1:check email using regular expression. // PHP email checker
// Function to validate email using regular expression function email_validation ( $str ) { return (! preg_match ( "^ [_ a-z0 -9 -] + (. [_ A-z0-9 -] +) * @ [a-z0-9 -] + (. [A-z0-9 -] +) * (. [Az] {2,3 }) $^ " , $str )) ? FALSE: TRUE; }
// function call if (! email_validation ( "[email protected]" )) { echo "Invalid email address." ; } else { echo " Valid email address. " ; }
?>
Exit:
Valid email address ...
Explanation:In the above example, sending an email to a user-defined email_validation ($email) function that uses this example and matches a regular expression using the predefined function preg_match(). This predefined function matches all input against a regular expression and returns True if a match is found, otherwise it returns False.Method 2:check email using the filter_var() method.
// Declare the variable and initialize
// send it to email $email = " [email protected] " ;
// Verify email address if (filter_var ( $email , FILTER_VALIDATE_EMAIL)) { echo ( " $email is a valid email address " ); } else { echo ( "$email is not a valid email address" ); }
?>
Exit:
author @ engineerforengineer .com is a valid email address
Explanation:In the above example, passing the input email address to the predefined function filter_var(), which takes two parameters as the input email and the second - it is a type of email filter. This function filters email and returns true or false.Method 3:check email using the FILTER_SANITIZE_EMAIL filter.
// Declare a variable and save it by email $email = "[email protected]" ;
// Remove all invalid characters from email $email = filter_var ( $email , FILTER_SANITIZE_EMAIL);
// Verify email address if (filter_var ( $email , FILTER_VALIDATE_EMAIL)) { echo ( " $email is a valid email address " ); } else { echo ( "$email is not a valid email address" ); }
?>
Exit:
author.gfg @ GeeksforGeeks.com is a valid email address
Explanation:In the above example, use the FILTER_SANITIZE_EMAIL filter to remove all unsupported characters, and then use the FILTER_VALIDATE_EMAIL filter to validate the email.

👻 Read also: what is the best laptop for engineering students?

We hope this article has helped you to resolve the problem. Apart from How do I validate an email address using PHP?, check other code Python module-related topics.

Want to excel in Python? See our review of the best Python online courses 2023. If you are interested in Data Science, check also how to learn programming in R.

By the way, this material is also available in other languages:



Julia Galleotti

Warsaw | 2023-04-01

Maybe there are another answers? What How do I validate an email address using PHP? exactly means?. I just hope that will not emerge anymore

Cornwall Nickolson

Munchen | 2023-04-01

Maybe there are another answers? What How do I validate an email address using PHP? exactly means?. Checked yesterday, it works!

Boris Nickolson

Singapore | 2023-04-01

I was preparing for my coding interview, thanks for clarifying this - How do I validate an email address using PHP? in Python is not the simplest one. Will get back tomorrow with feedback

Shop

Gifts for programmers

Learn programming in R: courses

$FREE
Gifts for programmers

Best Python online courses for 2022

$FREE
Gifts for programmers

Best laptop for Fortnite

$399+
Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best computer for crypto mining

$499+
Gifts for programmers

Best laptop for Sims 4

$

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically