p0n0marev/phpquery

PhpQuery is a server-side CSS selector

0.1 2024-04-01 16:57 UTC

This package is auto-updated.

Last update: 2024-08-31 00:30:08 UTC


README

PhpQuery is a server-side CSS selector

Installation

composer require p0n0marev/phpquery

General Usage

use P0n0marev\PhpQuery;

$pq = new PhpQuery('<div id="test-id">some text</div>');
print $pq->find('#test-id')->text();

// some text