Home  >  Article  >  Backend Development  >  php结合正则批量抓取网页中邮箱地址_PHP教程

php结合正则批量抓取网页中邮箱地址_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:53:23927browse

php结合正则批量抓取网页中邮箱地址

   php如何抓取网页中邮箱地址,下面我就给大家分享一个用php抓取网页中电子邮箱的实例。

  ?

1

2

3

4

5

6

7

8

9

10

11

12

13

$url='http://www.bkjia.net'; //要采集的网址

$content=file_get_contents($url);

//echo $content;

function getEmail($str) {

//$pattern = "/([a-z0-9]*[-_\.]?[a-z0-9]+)*@([a-z0-9]*[-_]?[a-z0-9]+)+[\.][a-z]{2,3}([\.][a-z]{2})?/i";

$pattern = "/([a-z0-9\-_\.]+@[a-z0-9]+\.[a-z0-9\-_\.]+)/";

preg_match_all($pattern,$str,$emailArr);

 

return $emailArr[0];

}

print_r( getEmail($content));

?>

  方法2:

  ?

1

2

3

4

5

6

7

8

9

10

$url='http://www.jbkjia.net'; //当页已留邮箱

$content=file_get_contents($url); //获取页面内容

function getEmail($str) { //匹配邮箱内容

$pattern = "/([a-z0-9\-_\.]+@[a-z0-9]+\.[a-z0-9\-_\.]+)/";

preg_match_all($pattern,$str,$emailArr);

return $emailArr[0];

}

print_r( getEmail($content));

?>

  以上所述就是本文的全部内容了,希望大家能够喜欢。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1002347.htmlTechArticlephp结合正则批量抓取网页中邮箱地址 php如何抓取网页中邮箱地址,下面我就给大家分享一个用php抓取网页中电子邮箱的实例。 ? 1 2 3 4 5 6...
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