您好,登錄后才能下訂單哦!
這篇文章主要介紹PHP如何使用QueryList輕松實現一個百度網盤資源搜索引擎,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
安裝
使用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 'vendor/autoload.php'; use QL\QueryList; use QL\Ext\Baidu; $ql = QueryList::use(Baidu::class); // 搜索百度網盤網站,包含‘百度’關鍵詞的資源 $searcher = $ql->baidu()->search('site:pan.baidu.com 百度'); // 獲取第一頁數據,并獲取真實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('QueryList'); $count = $searcher->getCount(); // 獲取搜索結果總條數 $data = $searcher->page(1); $data = $searcher->page(2); $searcher = $baidu->search('php'); $countPage = $searcher->getCountPage(); // 獲取搜索結果總頁數 for ($page = 1; $page <= $countPage; $page++) { $data = $searcher->page($page); } $data = $searcher->setHttpOpt([ // 設置http代理 'proxy' => 'http://222.141.11.17:8118', // Set the timeout time in seconds 'timeout' => 30, ])->page(1);
Google搜索引擎插件
當然除了Baidu搜索引擎插件,QueryList也有Google搜索引擎插件,也可以實現同樣的功能。
GitHub: https://github.com/jae-jae/Qu...
以上是PHP如何使用QueryList輕松實現一個百度網盤資源搜索引擎的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。