php 函数应检查文件 index.php 是否包含 CMS 链接。我尝试了以下但它不起作用:
<?php
$file = file_get_contents("./index.php");
if (strpos($file, "http://www.wordpress.com") !== false) {
echo "Found";
}
else
{
echo "Not found";
}
?>
我对 PHP 很陌生。我没有使用搜索找到答案。