PHP file_get_contents 在 Google 搜索上?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要以下形式的网址:
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"
好的,我已经回答了我自己的问题。对不起。如果我关闭 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!