Home  >  Article  >  Backend Development  >  PHP Regular Method to Verify Email_PHP Tutorial

PHP Regular Method to Verify Email_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 09:50:33806browse

Method of PHP regular verification of Email

This article describes the method of PHP regular verification of Email. Share it with everyone 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

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 with '.'

$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,"A")))

{

// domain not found in DNS

$isValid = false;

}

}

return $isValid;

}

?>

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
<๐ŸŽœ>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 with '.' $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,"A"))) { // domain not found in DNS $isValid = false; } } return $isValid; } ?>

I hope this article will be helpful to everyoneโ€™s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1017144.htmlTechArticleMethod of PHP Regular Verification Email This article describes the method of PHP Regular Verification Email. Share it with everyone 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 1...
Statement๏ผš
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn