我正在使用此代码检查但没有得到结果。在这里,我试图在雅虎中获取 google.com 的反向链接。
$url = "http://www.google.com";
$page = file_get_contents("http://siteexplorer.search.yahoo.com/search?p=$url&bwm=i&bwmf=a&bwms=p");
$expression = '/<span class="btn">Inlinks \((.*)\)<i class="tl"><\/i>/Us';
preg_match($expression, $page, $matches);
print_r($matches);