tburry / pquery

A jQuery like html dom parser written php.
GNU Lesser General Public License v2.1
135 stars 25 forks source link

pQuery

Build Status Coverage Latest Stable Version

pQuery is a jQuery like html dom parser written in php. It is a fork of the ganon dom parser.

Basic usage

To get started using pQuery do the following.

  1. Require the pQuery library into your project using composer.
  2. Parse a snippet of html using pQuery::parseStr() or pQuery::parseFile() to return a document object model (DOM).
  3. Run jQuery like functions on the DOM.

Example

The following example parses an html string and does some manipulation on it.

$html = '<div class="container">
  <div class="inner verb">Hello</div>
  <div class="inner adj">Cruel</div>
  <div class="inner obj">World</div>
</div>';

$dom = pQuery::parseStr($html);

$dom->query('.inner')
    ->tagName('span');

$dom->query('.adj')
    ->html('Beautiful')
    ->tagName('i');

echo $dom->html();

Differences between pQuery and ganon

pQuery is a fork of the ganon php processor. Most of the functionality is identical to ganon with the following exceptions.