幾乎天天都有人問我TP5中如何使用QueryList4,因此寫了這篇教程。說實話我並不太想寫這篇教程,由於實在是沒有什麼技術含量。php
去ThinkPHP官網下載最新的ThinkPHP5框架代碼: http://www.thinkphp.cnhtml
在ThinkPHP5代碼根目錄執行composer命令安裝QueryList:thinkphp
composer require jaeger/querylist
下面演示在Index
控制器中使用QueryList:app
<?php namespace app\index\controller; use QL\QueryList; class Index { public function index() { //採集某頁面全部的圖片 $data = QueryList::get('http://cms.querylist.cc/bizhi/453.html')->find('img')->attrs('src'); //打印結果 print_r($data->all()); } }
就這樣就行了。composer
PHP7如下環境沒法安裝和使用QueryList4!
PHP7如下環境沒法安裝和使用QueryList4!
PHP7如下環境沒法安裝和使用QueryList4!框架
若是仍是不知道怎麼安裝的話,能夠去QueryList交流羣(123266961)中去下載完整的ThinkPHP5集成QueryList4壓縮包。ui