Php: An Example of verifying whether an email address exists-PHP source code

Source: Internet
Author: User
Tags mx record
Check the email address has a function in php. We only need to execute the function. Let's take a look at the example about php's accurate check of whether the email address exists, as shown below. Check the email address has a function in php. We only need to execute the function. Let's take a look at the example about php's accurate check of whether the email address exists, as shown below.

Script ec (2); script

Background

PHP provides many methods to verify the email address. It is commonly used to write regular expressions by yourself. However, regular expressions are much more troublesome. I have provided PHP methods for verification.

Filter_var

Filter_var is a built-in variable Filtering Method in PHP. It provides many practical filters that can be used to verify integers, floating point numbers, mailboxes, URLs, and MAC addresses.

For more information about filters, see filters. validate.

Filter_var if false is returned, the variable cannot pass the filter, that is, it is invalid.

$ Email = "lastchiliarch@163.com ";

Var_dump (filter_var ($ email, FILTER_VALIDATE_EMAIL ));


$ Email = "asb ";
Var_dump (filter_var ($ email, FILTER_VALIDATE_EMAIL ));

$ Email = "1@a.com ";
Var_dump (filter_var ($ email, FILTER_VALIDATE_EMAIL ));

Output:


String (21) "lastchiliarch@163.com"
Bool (false)
String (7) "1@a.com"

False is returned for an invalid email address format such as asb, but it is still slightly defective if the 1@a.com passes.

But the general regular also through will think 1@a.com is a legitimate mailbox, then what method can be more accurate verification?

Checkdnsrr

Checkdnsrr is actually used to query the DNS records of the specified host. We can use it to verify whether the mailbox exists.

The MX record does not exist for 1@a.com.

$ Email = "lastchiliarch@163.com ";
Var_dump (checkdnsrr (array_pop (explode ("@", $ email), "MX "));
$ Email = "1@a.com ";
Var_dump (checkdnsrr (array_pop (explode ("@", $ email), "MX "));

Output:
Bool (true)
Bool (false)

We can see that it is perfect. The only drawback is that it is too slow. After all, it is a network request. Therefore, it is not suitable for Synchronous verification of a large number of mailboxes.

Filter_var + checkdnsrr

We can check filter_var and checkdnsrr. For most illegal emails, the filter_var will be suspended, and the rest will be reused.

Checkdnsrr further judgment.

$ Email_arr = array ("lastchiliarch@163.com", "1@a.com ");
Foreach ($ email_arr as $ email ){
If (filter_var ($ email, FILTER_VALIDATE_EMAIL) === false ){
Echo "invalid email: $ email \ n ";
Continue;
}

If (checkdnsrr (array_pop (explode ("@", $ email), "MX") === false ){
Echo "invalid email: $ email \ n ";
Continue;
}
}

Output: invalid email: 1@a.com

However, it should be noted that, because we only check MX records, we can only judge that 163.com exists, but it cannot be said that the user lastchiliarch exists.

To determine the existence of a mailbox more accurately, you can only connect to the smtp server for verification.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.