PHP Regular Expression verification Email Method

Source: Internet
Author: User
Tags php regular expression in domain

PHP Regular Expression verification Email Method

This article describes the PHP Regular Expression verification Email method. Share it with you for your reference. The details are as follows:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

<? Php

Function validateEmail ($ email)

{

$ IsValid = true;

$ AtIndex = strrpos ($ email ,"@");

If (is_bool ($ atIndex )&&! $ AtIndex)

{

$ IsValid = false;

}

Else

{

$ Domain = substr ($ email, $ atIndex + 1 );

$ Local = substr ($ email, 0, $ atIndex );

$ LocalLen = strlen ($ local );

$ DomainLen = strlen ($ domain );

If ($ localLen <1 | $ localLen> 64)

{

// Local part length exceeded

$ IsValid = false;

}

Else if ($ domainLen <1 | $ domainLen> 255)

{

// Domain part length exceeded

$ IsValid = false;

}

Else if ($ local [0] = '.' | $ local [$ localLen-1] = '.')

{

// Local part starts or ends '.'

$ IsValid = false;

}

Else if (preg_match ('/\. \./', $ local ))

{

// Local part has two consecutive dots

$ IsValid = false;

}

Else if (! Preg_match ('/^ [A-Za-z0-9 \-\.] + $/', $ domain ))

{

// Character not valid in domain part

$ IsValid = false;

}

Else if (preg_match ('/\. \./', $ domain ))

{

// Domain part has two consecutive dots

$ IsValid = false;

}

Else if (! Preg_match ('/^ (\\\\. | [A-Za-z0-9! # % & '_ =\\/ $ \' * +? ^ {} | ~. -]) + $/', Str_replace ("\\\\", "", $ local )))

{

// Character not valid in local part unless

// Local part is quoted

If (! Preg_match ('/^ "(\\\\" | [^ "]) +" $/', str_replace ("\\\\","", $ local )))

{

$ IsValid = false;

}

}

If ($ isValid &&! (Checkdnsrr ($ domain, "MX") | checkdnsrr ($ domain, "")))

{

// Domain not found in DNS

$ IsValid = false;

}

}

Return $ isValid;

}

?>

I hope this article will help you with php programming.

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.