Heim php教程 PHP源码 PHP表单常用正则表达式(URL、HTTP、手机、邮箱等)

PHP表单常用正则表达式(URL、HTTP、手机、邮箱等)

May 24, 2016 pm 12:53 PM

PHP表单常用正则表达式(URL、HTTP、手机、邮箱等)

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

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

<?php

/**

* @description: 正则表达式匹配

*/

class Regex {

/**

* @手机号

*/

public static function Phone($subject) {

$pattern=&#39;/^(0|86|17951)?(13[0-9]|15[012356789]|1[78][0-9]|14[57])[0-9]{8}$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @数字

*/

public static function Number($subject) {

$pattern=&#39;/^[0-9]+$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @年份 格式:yyyy

*/

public static function Year($subject) {

$pattern=&#39;/^(\d{4})$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @月份 格式:mm

*/

public static function Month($subject) {

$pattern=&#39;/^0?([1-9])$|^(1[0-2])$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @日期 格式:yyyy-mm-dd

*/

public static function Day($subject) {

$pattern=&#39;/^(\d{4})-(0?\d{1}|1[0-2])-(0?\d{1}|[12]\d{1}|3[01])$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @日期时间 格式:yyyy-mm-dd hh:ii:ss

*/

public static function DateTime($subject) {

$pattern=&#39;/^(\d{4})-(0?\d{1}|1[0-2])-(0?\d{1}|[12]\d{1}|3[01])\s(0\d{1}|1\d{1}|2[0-3]):[0-5]\d{1}:([0-5]\d{1})$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @邮箱

*/

public static function Email($subject) {

$pattern=&#39;/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @邮编

*/

public static function Postcode($subject) {

$pattern=&#39;/[1-9]\d{5}(?!\d)/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @有效图片地址

*/

public static function Photo($subject) {

$pattern=&#39;/\b(([\w-]+:\/\/?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|\/)))/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @URL地址

*/

public static function UrlAddress($subject) {

$pattern=&#39;/\b(([\w-]+:\/\/?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|\/)))/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @有效HTTP地址

*/

public static function EffectiveHttp($subject) {

$pattern=&#39;/\b(([\w-]+:\/\/?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|\/)))/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @身份证

*/

public static function Identity($subject) {

$pattern=&#39;/(^\d{15}$)|(^\d{17}([0-9]|X)$)/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @IPv4

*/

public static function Ipv4($subject) {

$pattern=&#39;/^(((\d{1,2})|(1\d{2})|(2[0-4]\d)|(25[0-5]))\.){3}((\d{1,2})|(1\d{2})|(2[0-4]\d)|(25[0-5]))$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @IPv6

*/

public static function Ipv6($subject) {

$pattern=&#39;/^([\da-fA-F]{1,4}:){7}[\da-fA-F]{1,4}$/&#39;;

return Regex::PublicMethod($pattern, $subject);

}

/**

* @匹配正则公共方法

*/

public static function PublicMethod($pattern, $subject){

if(preg_match($pattern, $subject)){

return true;

}

return false;

}

}

Nach dem Login kopieren

                   

Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

Video Face Swap

Video Face Swap

Tauschen Sie Gesichter in jedem Video mühelos mit unserem völlig kostenlosen KI-Gesichtstausch-Tool aus!

Heiße Werkzeuge

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)