假定文件是test.txt

$pathFile = 'test.txt';

首先用file_get_contents把文件内容读到字符串变量

$str= file_get_contents($pathFile);

最后使用 strstr 判断字符串是否重复

if(strstr($str, '要查找的内容'))
{
    echo "文本重复";
}

strstr 返回字符串的剩余部分(从匹配点)。如果未找到所搜索的字符串,则返回 FALSE。