如何使用 PHP 从 AOL 搜索引擎获取特定关键字的前 20 个结果?

发布于 2024-08-15 08:21:12 字数 61 浏览 6 评论 0原文

我想要 AOL 搜索引擎的前 20 个结果,但我不知道如何使用 PHP 脚本获得?

请帮我。

I want top 20 results of AOL search engine but I don't know how can I get using PHP script ?

Please Help me.

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

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

发布评论

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

评论(2

万水千山粽是情ミ 2024-08-22 08:21:12

AOL 有 API 可以做到这一点:您需要检查文档,就像我在互联网上找到的 ASP.NET 示例一样:
http://dev.aol.com/aspnet-aolvideo-part1

AOL has API to do that: You need to check the docs, like I got one example on internet for ASP.NET:
http://dev.aol.com/aspnet-aolvideo-part1

送君千里 2024-08-22 08:21:12

首先对搜索关键字进行编码:

$query = urlencode("YOUR_SEARCH_KEYWORD");

接下来按以下格式构造 URL:

$URL = "http://search.aol.com/aol/search?query=$query";

然后使用 file_get_contents() 函数获取该 URL 的页面:

$file = file_get_contents($URL);

该页面有 10 个结果,要获取接下来的 10 个结果,只需将 url 更改为:

$URL = "http://search.aol.com/aol/search?query=$query&page=2";

获取文件再次,这有接下来的 10 个结果。

First encode the search keyword:

$query = urlencode("YOUR_SEARCH_KEYWORD");

Next construct the URL in the following format:

$URL = "http://search.aol.com/aol/search?query=$query";

And then fetch the page for this URL using file_get_contents() function:

$file = file_get_contents($URL);

This page has 10 results, to get the next 10 results just change the url as:

$URL = "http://search.aol.com/aol/search?query=$query&page=2";

Fetch the file again and this has the next 10 results.

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