An open API service indexing awesome lists of open source software.

https://github.com/johnstyle/pquery

PHP DOM selector jQuery like
https://github.com/johnstyle/pquery

Last synced: over 1 year ago
JSON representation

PHP DOM selector jQuery like

Awesome Lists containing this project

README

          

pQuery
======

PHP DOM selector jQuery like

Example
======

$html = '<div>
<span class="test gogo wawa">test <sup>10</sup><sup><strong>11</strong></sup><sup>12</sup></span>
<span class="test demo toto">demo <sup class="oo"><strong>15</strong></sup></span>
</div>';

$pQuery = new pQuery($html);
$pQuery->find('span[class*=gogo] sup:last');
echo $pQuery->text();