PHP file_get_contents 在 Google 搜索上?

发布于 2024-10-02 11:08:09 字数 428 浏览 5 评论 0原文

我正在尝试使用 PHP 返回 Google 搜索结果的 HTML。

例如

<?php
$file = file_get_contents('http://www.example.com',false);
echo $file;
?>

将返回 example.com 的 HTML 内容。问题是,当我尝试在 Google 搜索网址上执行此操作时,例如 http://www.google.com/#sclient=psy&hl=en&q=cats,它返回 Google 主页的 HTML,而不是“猫”的搜索结果。

做到这一点最简单的方法是什么?

I'm trying to use PHP to return the resultant HTML of a Google search.

So for instance

<?php
$file = file_get_contents('http://www.example.com',false);
echo $file;
?>

will return the HTML contents of example.com. The problem is, when I try to do this on a Google search URL, e.g., http://www.google.com/#sclient=psy&hl=en&q=cats, it returns the HTML from the main Google page and NOT the search results for 'cats'.

What's the easiest way to do this?

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

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

发布评论

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

评论(2

决绝 2024-10-09 11:08:09

您需要以下形式的网址:

http://www.google.com/search?q=cats

您使用的网址用于他们新的“即时搜索”

You want a URL of this form:

http://www.google.com/search?q=cats

The URL you're using is for their new "instant search"

女中豪杰 2024-10-09 11:08:09

好的,我已经回答了我自己的问题。对不起。如果我关闭 Google Insant,它在 http://www 等网址上可以正常工作.google.com/search?hl=en&q=cats

无论如何,谢谢!

OK, I've answered my own question. Sorry. If I turn Google Insant off, it works fine on a URL like http://www.google.com/search?hl=en&q=cats

Thanks anyway!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文