jaeger / querylist-rule-google
QueryList 插件:谷歌搜索器。QueryList谷歌搜索插件
4.0.0
2017-10-01 15:27 UTC
Requires
- php: >=7.0
Requires (Dev)
- jaeger/querylist: dev-master
This package is auto-updated.
Last update: 2024-09-09 17:22:19 UTC
README
QueryList 插件:谷歌搜索器,PHP中的谷歌搜索引擎抓取器,抓取谷歌搜索结果。
QueryList插件:谷歌搜索引擎
QueryList:https://github.com/jae-jae/QueryList
QueryList4的安装
composer require jaeger/querylist-rule-google
API
- Google google($pageNumber = 10):获取谷歌搜索器。
class Google
- Google search($keyword):设置搜索关键字。
- Google setHttpOpt(array $httpOpt = []):设置 HTTP 选项,查看:GuzzleHttp 选项
- int getCount():获取搜索结果的总数。
- int getCountPage():获取总页数。
- Collection page($page = 1):获取搜索结果
使用方法
- 安装插件
use QL\QueryList; use QL\Ext\Google; $ql = QueryList::getInstance(); $ql->use(Google::class); //or Custom function name $ql->use(Google::class,'google');
- 示例-1
$google = $ql->google(10) $searcher = $google->search('QueryList'); $count = $searcher->getCount(); $data = $searcher->page(1); $data = $searcher->page(2); $searcher = $google->search('php'); $countPage = $searcher->getCountPage(); for ($page = 1; $page <= $countPage; $page++) { $data = $searcher->page($page); }
- 示例-2
$searcher = $ql->google()->search('QueryList'); $data = $searcher->setHttpOpt([ // Set the http proxy 'proxy' => 'http://222.141.11.17:8118', // Set the timeout time in seconds 'timeout' => 30, ])->page(1); print_r($data->all());
- 示例-3
$data= $searcher = $ql->google(3)->search('QueryList')->page(1); print_r($data->all());
输出
Array
(
[0] => Array
(
[title] => Angular - QueryList
[link] => https://angular.io/api/core/QueryList
)
[1] => Array
(
[title] => QueryList | @angular/core - Angularリファレンス - Web Creative Park
[link] => http://www.webcreativepark.net/angular/querylist/
)
[2] => Array
(
[title] => Understanding ViewChildren, ContentChildren, and QueryList in ...
[link] => https://netbasal.com/understanding-viewchildren-contentchildren-and-querylist-in-angular-896b0c689f6e
)
)