Home > php教程 > php手册 > php结合正则批量抓取网页中邮箱地址

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 09:03:54
Original
1379 people have browsed it

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));

?>

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

Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template