确定外部网站上是否存在特定网址

时间:2010-01-26 00:08:26

标签: php search external

如何查看特定网站的内容是否有特定链接?我们的情况是某人不一定要窃取我们受版权保护的内容,但他们会发布部分内容并链接到作为作者的其他网站,我们希望每次都能跟踪这些内容。

基本上我需要的是访问www.site_of_thieves.com/specific_page.php并搜索www.second_site.com并报告找到的匹配数量。

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:2)

$theivesSiteContent = file_get_contents("www.site_of_thieves.com/specific_page.php");

preg_match_all('/www.second_site.com/g', $theivesSiteContent, $matches);

print_r($matches);

答案 1 :(得分:1)

$ CL> curl site.com | grep“链接”