1: Demand background
As a developer, you will more or less encounter the need for collection in daily development, and you need to collect data, articles, etc. from a certain website. etc. At the same time, it is also necessary to analyze and classify the collected content. In the process of parsing and classifying, most PHPers use regular methods to analyze the crawled data, which increases the difficulty and does not improve the efficiency. Using QueryList can solve the problem of results very easily.
2: What is QueryList?
QueryList is an open source project based on phpQuery, which allows PHPer to perform a JQuery-like DOM operation on the content when collecting information. It is very simple and convenient, and fits the usual development habits.
3: Download and install
(1) Environmental requirements, there are two installation methods, you can select any of the following.
PHP >= 5.3
(2) Installation method - Use composer to install
composer require jaeger/querylist:V3.2.1
or add the following configuration to the composer.json file of the project, and then composer update
"require" : { "jaeger/querylist": "^3.2" }
After the installation is completed, In the project, directly introduce the vendor/autoload.php file and start using it directly
(3) Test
$html = <<<STR <div id="one"> <div class="two"> <a href="http://querylist.cc">QueryList官網(wǎng)</a> <img src="http://querylist.com/1.jpg" alt="這是圖片"> <img src="http://querylist.com/2.jpg" alt="這是圖片2"> </div> <span>其它的<b>一些</b>文本</span> </div> STR; $rules = array( //采集id為one這個元素里面的純文本內(nèi)容 'text' => array('#one','text'), //采集class為two下面的超鏈接的鏈接 'link' => array('.two>a','href'), //采集class為two下面的第二張圖片的鏈接 'img' => array('.two>img:eq(1)','src'), //采集span標簽中的HTML內(nèi)容 'other' => array('span','html') ); $data = QueryList::Query($html, $rules)->data; var_dump($data);
(4) Installation method-manual installation
Go to Github Download the code https://github.com/jae-jae/QueryL, get the two files QueryList.php and phpQuery.php and put them into the project
(5) Test
<?php require 'phpQuery.php'; require 'QueryList.php'; use QL\QueryList; $hj = QueryList::Query('https://php.cn/',array("url"=>array('.unit h1 a','href'))); $data = $hj->getData(function($x){ return $x['url']; }); print_r($data);
Summary, downloading and installing this plug-in is very simple. In the next issue, I will introduce simple collection of article content, which is suitable for beginners to learn. Everyone is welcome to pay attention and receive new course reminders in time.
The above is the detailed content of PHP collection plug-in QueryList practical teaching (1). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
