jae-jae / QueryList

:spider: The progressive PHP crawler framework! 优雅的渐进式PHP采集框架。
https://querylist.cc
2.67k stars 443 forks source link

能在文档中写一个完整的使用QueryList::get的示例就好了 #13

Closed loongws closed 6 years ago

loongws commented 6 years ago

现在文档里面能找到的要么是直接用file_get_contents获取的页面来举例,要么就是使用了QueryList::get获取到页面后就没有其他的操作了,这样容易让人产生迷惑,如果能完全用QueryList::get来举例就好了

jae-jae commented 6 years ago

已对文档做了优化:

基本用法

$ql = QueryList::get('http://httpbin.org/get?param1=testvalue');
echo $ql->getHtml();

等价于下面操作:

$html = file_get_contents('http://httpbin.org/get?param1=testvalue');
$ql = QueryList::html($html);
echo $ql->getHtml();
loongws commented 6 years ago

多谢了