Diperkenalkan ke dalam projek


Dipasang melalui Composer

Anda hanya perlu memperkenalkan fail vendor/autoload.php untuk menggunakan QueryList dan semua pemalamnya (jika pemalam dipasang). vendor/autoload.php文件就可以使用QueryList及其所有插件了(如果安装了插件的话)。

例:

<?php
require 'vendor/autoload.php';
use QL\QueryList;
$hj = QueryList::Query('http://mobile.csdn.net/',array("url"=>array('.unit h1 a','href')));
$data = $hj->getData(function($x){
    return $x['url'];
});
print_r($data);

手动安装的

手动下载phpQuery.phpQueryList.php这两个文件,然后手动引入这两个文件就可以了。
例:

<?php
require 'phpQuery.php';
require 'QueryList.php';
use QL\QueryList;
$hj = QueryList::Query('http://mobile.csdn.net/',array("url"=>array('.unit h1 a','href')));
$data = $hj->getData(function($x){
    return $x['url'];
});
print_r($data);

手动安装QueryList插件

  • 假设QueryList所在目录为:
    path/to/QueryList/
  • 则插件目录应该为:
    path/to/QueryList/Ext/
  • 插件所依赖的类库存放目录为:
    path/to/QueryList/Ext/Lib/
    Contoh:
    rrreee
Dipasang secara manual

Muat turun secara manual phpQuery.php dan QueryList.php kedua-dua fail ini, dan kemudian memperkenalkan kedua-dua fail ini secara manual. Contoh:

rrreee

Pasang pemalam QueryList secara manual

🎜