欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

采集邮箱php代码

程序员文章站 2022-05-10 13:49:53
...
由于搞了个群发邮件的程序,当然没邮箱不行,所以写了个采集邮箱程序.
转载自:
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. ?>
复制代码
相关标签: 采集邮箱php代码