有時我們會有專業的工具去搜集網站中網頁上有email地址的內容,把內容中的郵箱地址給提取出來,下面我們來看個實例,有需要的參考一下。
[PHP]代碼
代碼如下 復制代碼function extract_emails($str){
// This regular expression extracts all emails from a string:
$regexp = '/([a-z0-9_.-])+@(([a-z0-9-])+.)+([a-z0-9]{2,4})+/i';
preg_match_all($regexp, $str, $m);
return isset($m[0]) ? $m[0] : array();
}
$test_string = 'This is a test string...
Test different formats:
<a href="[email protected]">foobar</a>
strange formats:
test6[at]example.org
test8@ example.org
test9@!foo!.org
foobar ';
print_r(extract_emails($test_string));