PHP使用QueryList輕鬆實作一個百度網盤資源搜尋引擎

藏色散人
發布: 2023-04-07 17:24:01
轉載
4827 人瀏覽過

QueryList使用jQuery的方式來做採集,擁有豐富的外掛。

下面來示範QueryList使用Baidu搜尋引擎外掛輕鬆實現站內搜尋。

安裝

使用Composer安裝:

#安裝QueryList

composer require jaeger/querylist

#GitHub: https://github.com/jae-jae/Qu...

安裝Baidu搜尋引擎外掛程式

composer require jaeger/querylist-rule-baidu

GitHub: https://github.com/jae-jae/Qu...

#外掛程式API

##● Baidu baidu($pageNumber = 10):取得百度搜尋引擎

class Baidu:

● Baidu search($keyword):設定搜尋關鍵字

● Baidu setHttpOpt(array $httpOpt = []):設定HTTP選項,檢視:

GuzzleHttp options

● int getCount():取得搜尋結果總條數

# int getCountPage() :取得搜尋結果總頁數

● Collection page($page = 1,$realURL = false):取得搜尋結果

使用

#實作一個百度網盤資源搜尋引擎:

<?php
require &#39;vendor/autoload.php&#39;;
use QL\QueryList;
use QL\Ext\Baidu;
$ql = QueryList::use(Baidu::class);
// 搜索百度网盘网站,包含‘百度’关键词的资源
$searcher = $ql->baidu()->search(&#39;site:pan.baidu.com 百度&#39;);
// 获取第一页数据,并获取真实URL连接地址
$data = $searcher->page(1,true);
print_r($data->all());
登入後複製

抓取結果:

Array
(
    [0] => Array
        (
            [title] => 百度网盘_享你所想
            [link] => http://pan.baidu.com/
        )
    [1] => Array
        (
            [title] => 百度网盘 客户端下载
            [link] => https://pan.baidu.com/download
        )
    [2] => Array
        (
            [title] => 百度网盘-开放平台
            [link] => https://pan.baidu.com/platform/read
        )
     // ....
)
登入後複製

#更多用法

$baidu = $ql->baidu(15); // 设置每页搜索15条结果
$searcher = $baidu->search(&#39;QueryList&#39;);
$count = $searcher->getCount();  // 获取搜索结果总条数
$data = $searcher->page(1);
$data = $searcher->page(2);
$searcher = $baidu->search(&#39;php&#39;);
$countPage = $searcher->getCountPage(); // 获取搜索结果总页数
for ($page = 1; $page <= $countPage; $page++)
{
    $data = $searcher->page($page);
}
$data = $searcher->setHttpOpt([
    // 设置http代理
    &#39;proxy&#39; => &#39;http://222.141.11.17:8118&#39;,
   // Set the timeout time in seconds
    &#39;timeout&#39; => 30,
])->page(1);
登入後複製

#### ##Google搜尋引擎插件#########當然除了Baidu搜尋引擎插件,QueryList也有Google搜尋引擎插件,也可以實現同樣的功能。 ######GitHub: ###https://github.com/jae-jae/Qu...#########更多PHP相關知識,請造訪###PHP中文網###! ###

以上是PHP使用QueryList輕鬆實作一個百度網盤資源搜尋引擎的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!