国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > 建站經驗 > 正文

PHP正則驗證Em ail的方法

2019-11-02 14:39:00
字體:
來源:轉載
供稿:網友

   本文實例講述了PHP正則驗證Email的方法。分享給大家供大家參考。具體如下:

  ?

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; }
最新搞笑圖片[www.62-6.com/1/pic/]
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; } ?>
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 桐乡市| 武川县| 禄丰县| 中宁县| 临澧县| 普定县| 枣阳市| 都江堰市| 锦州市| 繁昌县| 贵州省| 且末县| 旬邑县| 新密市| 嘉义县| 饶平县| 宜春市| 金秀| 牡丹江市| 柞水县| 成安县| 金山区| 射阳县| 靖安县| 克什克腾旗| 大厂| 西吉县| 木里| 攀枝花市| 南丹县| 鄂州市| 玉田县| 遵义县| 文水县| 民勤县| 内乡县| 来凤县| 潼南县| 贵州省| 宜宾县| 和硕县|