可能重复:
如何使用 PHP 解析和处理 HTML/XML?
我想在 html 源代码中找到反向链接。请参阅下面的代码。但我想找到没有rel='nofollow'
属性的锚标签。
例子:
<a href='http://domain.com/abd/ff/' rel='nofollow'>
正则表达式:
if(preg_match("/<a(.*)href=[\"']".$match_pattern."(\/?)[\"'](.*)>(.*)<\/a>/", $part)){...}
功能:
function check_back_link($remote_url, $your_link) {
$match_pattern = preg_quote(rtrim($your_link, "/"), "/");
$found = false;
if($handle = @fopen($remote_url, "r")){
while(!feof($handle)){
$part = fread($handle, 1024);
if(preg_match("/<a(.*)href=[\"']".$match_pattern."(\/?)[\"'](.*)>(.*)<\/a>/", $part)){
$found = true;
break;
}
}
fclose($handle);
}
return $found;
}