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

发布于 2024-08-18 18:43:34 字数 215 浏览 2 评论 0原文

我怎样才能查看特定网站的内容中是否有特定链接?我们遇到的情况是,有人不一定窃取我们的受版权保护的内容,但他们会发布部分内容并以作者身份链接到另一个网站,我们希望跟踪他们每次这样做的情况。

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

任何帮助将不胜感激。

How can I go about seeing if a particular website has a specific link in its content? We have a situation where someone is not necessarily stealing our copyrighted content, but they are posting parts of it and linking to another site as the author and we're wanting to track each time they do this.

Basically what I need is something that will go to www.site_of_thieves.com/specific_page.php and search for www.second_site.com and report back on the number of matches found.

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ヤ经典坏疍 2024-08-25 18:43:34
$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);
$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);
扮仙女 2024-08-25 18:43:34

$cl>卷曲 site.com | grep“链接”

$cl> curl site.com | grep "the link"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文