Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个标签以允许用户声明其网站的所有权。
我将如何获得标签并将其与我生成的标签进行匹配。
标签格式为<!--tag-->
<!--tag-->
如果我能够使用获取 html,我将如何验证此标签file_Get_contents("url");
file_Get_contents("url");
这只是一个字符串匹配。
<?php $tagCode = "<!-- abc123 -->"; $pageContent = file_get_contents("http://www.somesite.com/"); if (strpos($pageContent, $tagCode) !== false) { echo "it matched!"; }