Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-13 09:03:56
Original
1306 people have browsed it

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

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

<&#63;php
  $url='http://www.bkjia.com'; //要采集的网址 
  $content=file_get_contents($url);
  //echo $content;
  function getEmail($str) {
  //$pattern = "/([a-z0-9]*[-_\.]&#63;[a-z0-9]+)*@([a-z0-9]*[-_]&#63;[a-z0-9]+)+[\.][a-z]{2,3}([\.][a-z]{2})&#63;/i";
  $pattern = "/([a-z0-9\-_\.]+@[a-z0-9]+\.[a-z0-9\-_\.]+)/";
  preg_match_all($pattern,$str,$emailArr);
 
  return $emailArr[0];
  }
  print_r( getEmail($content));
  &#63;>
Copy after login

方法2:

<&#63;php 
$url='http://www.bkjia.com'; //当页已留邮箱
$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)); 
&#63;>
Copy after login

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

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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template