如何使用 PHP 从 AOL 搜索引擎获取特定关键字的前 20 个结果?
我想要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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
首先对搜索关键字进行编码:
接下来按以下格式构造 URL:
然后使用 file_get_contents() 函数获取该 URL 的页面:
该页面有 10 个结果,要获取接下来的 10 个结果,只需将 url 更改为:
获取文件再次,这有接下来的 10 个结果。
First encode the search keyword:
Next construct the URL in the following format:
And then fetch the page for this URL using file_get_contents() function:
This page has 10 results, to get the next 10 results just change the url as:
Fetch the file again and this has the next 10 results.