>  기사  >  백엔드 개발  >  이메일 PHP 코드 수집

이메일 PHP 코드 수집

WBOY
WBOY원래의
2016-07-25 09:06:35863검색
由于搞了个群发邮件的程序,当然没邮箱不行,所以写了个采集邮箱程序.
转载自:
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. ?>
复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.