当前位置:Gxlcms > PHP教程 > 采集邮箱php代码

采集邮箱php代码

时间:2021-07-01 10:21:17 帮助过:46人阅读

由于搞了个群发邮件的程序,当然没邮箱不行,所以写了个采集邮箱程序.
转载自:
http://www.tongqiong.com/read.php?tid-35-ds-1.html
  1. //作者:www.tongqiong.com
  2. $url='http://www.tongqiong.com/read.php?tid-1-ds-1.html'; //这个网页里绝对含有邮件地址。
  3. $content=file_get_contents($url);
  4. //echo $content;
  5. function getEmail($str) {
  6. //$pattern = "/([a-z0-9]*[-_\.]?[a-z0-9]+)*@([a-z0-9]*[-_]?[a-z0-9]+)+[\.][a-z]{2,3}([\.][a-z]{2})?/i";
  7. $pattern = "/([a-z0-9\-_\.]+@[a-z0-9]+\.[a-z0-9\-_\.]+)/";
  8. preg_match_all($pattern,$str,$emailArr);
  9. return $emailArr[0];
  10. }
  11. print_r( getEmail($content));
  12. //作者:www.tongqiong.com
  13. ?>

人气教程排行