如何验证网站的所有权?

发布于 2024-10-29 22:28:45 字数 177 浏览 0 评论 0原文

我想创建一个标签以允许用户声明其网站的所有权。

我如何获取标签并将其与我生成的标签进行匹配。

标记格式将为

如果我能够使用 file_Get_contents("url"); 获取 html,我将如何验证此标记>

I want to create a tag to allow user to claim the ownership of his website.

How would I get the tag and the match it against the one I have generated.

The tag format will be <!--tag-->

how will I verify this tag if I am able to get the html using file_Get_contents("url");

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

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

发布评论

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

评论(1

橘香 2024-11-05 22:28:45

这只是一个字符串匹配。

<?php
$tagCode = "<!-- abc123 -->";
$pageContent = file_get_contents("http://www.somesite.com/");

if (strpos($pageContent, $tagCode) !== false) {
    echo "it matched!";
}

it's just a string match.

<?php
$tagCode = "<!-- abc123 -->";
$pageContent = file_get_contents("http://www.somesite.com/");

if (strpos($pageContent, $tagCode) !== false) {
    echo "it matched!";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文