PHP - 如何查看某个词是否在特定网页上?

PHP - How to see if a word is on a specific webpage?

我需要检查我网站以外的网页上是否有特定字词。我试过 file_get_contents() 但它没有 return 任何东西。在 PHP?

中有什么方法可以做到这一点?

编辑:这是我尝试过的:

$query = 'example';
$file = "https:// www.site.com/search?q=$query";
// tested url and it works, had to add space to post it
$contents = file_get_contents($file);
echo $contents;

我原以为它会输出整个页面供我稍后使用.includes(),但它什么也没输出。

查看 curl 以获取网页内容。然后你可以使用preg_match来查找这个词。