如何通过HTML String中的php简单dom解析器找到有效的电子邮件。 谢谢你的帮助。
我有这段代码
$html = $this->file_get_contents_curl('domain.com');
$content = str_get_html($html) or die('this is not a valid url');
$email = $content->find('a');
foreach ($email as $k => $v) {
if (preg_match('/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/', $v))
{
echo $v->href;
}
}
但这不起作用