- Get Started
- 基础
- 进阶
- 技巧
- 插件推荐
- API
- Get Started
- 基础 API
- QueryList html($html)
- string getHtml($rel = true)
- QueryList rules(array $rules)
- QueryList range($selector)
- QueryList removeHead()
- QueryList query(Closure $callback = null)
- Collection getData(Closure $callback = null)
- Array queryData(Closure $callback = null)
- QueryList static getInstance()
- void destruct()
- void destructDocuments() 静态方法
- QueryList pipe(Closure $callback)
- 特殊 API
- 高级 API
- 默认插件
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
使用插件
使用插件实现无限可能。
QueryList使用use()
方法来注册插件。
目前收录的一些QueryList插件: https://github.com/jae-jae/QueryList-Community
用法
有两种用法
注册单个插件,可携带安装参数。
$ql = QueryList::getInstance();
$ql->use(My\MyPlugin::class);
//或者,带安装参数
$ql->use(My\MyPlugin::class,$arg1,$arg2,$arg3);
同时注册多个插件,不能携带安装参数。
$ql = QueryList::getInstance();
$ql->use([
My\MyPlugin::class,
My\MyPlugin2::class,
Other\OtherPlugin::class
]);
例子
PhantomJS
插件用于采集Javascript动态渲染的网页内容,插件项目地址:https://github.com/jae-jae/QueryList-PhantomJS
安装插件
在QueryList项目中执行composer命令:
composer require jaeger/querylist-phantomjs
使用插件
此插件注册时需要携带2个参数,一个参数是PhantomJS
二进制文件路径,另一个可选参数是注册的函数名称。
use QL\QueryList;
use QL\Ext\PhantomJs;
$ql = QueryList::getInstance();
注册插件,使用默认函数名称,此插件的默认函数名称为browser
$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs');
// 使用插件
$html = $ql->browser('https://m.toutiao.com')->getHtml();
print_r($html);
注册插件,使用自定义函数名称chrome
$ql->use(PhantomJs::class,'/usr/local/bin/phantomjs','chrome');
// 使用插件
$html = $ql->chrome('https://m.toutiao.com')->getHtml();
print_r($html);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论