- 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
- 默认插件
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Config static config()
静态方法,全局配置QueryList,返回值为QL\Config
对象.
QL\Config 对象
方法列表:
- use() 全局安装插件
- bind() 全局功能扩展
Config use($plugins,...$opt)
用法同QueryList的use方法,全局安装插件后,所有QueryList对象均可使用这些插件。
QueryList::config()->use(My\MyPlugin::class,$arg1,$arg2,$arg3);
QueryList::config()->use(My\MyPlugin::class)->use([
My\MyPlugin::class,
My\MyPlugin2::class,
Other\OtherPlugin::class
]);
Config bind(string $name, Closure $provider)
用法同QueryList的bind方法,全局功能扩展,所有QueryList对象均可使用扩展的方法。
- 例一
//全局注册一个自定义的编码转换方法
QueryList::config()->bind('myEncode',function($outputEncoding,$inputEncoding){
$html = iconv($inputEncoding,$outputEncoding.'//IGNORE',$this->getHtml());
$this->setHtml($html);
return $this;
});
$data = QueryList::get('https://top.etao.com')->myEncode('UTF-8','GBK')->find('a')->texts();
print_r($data->all());
- 例二
//全局注册一个myHttp方法到QueryList对象
QueryList::config()->bind('myHttp',function($url){
$html = file_get_contents($url);
$this->setHtml($html);
return $this;
});
$data = QueryList::myHttp('https://top.etao.com')->find('a')->texts();
print_r($data->all());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论