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
- Host: GitHub
- URL: https://github.com/johnstyle/pquery
- Owner: johnstyle
- License: gpl-2.0
- Created: 2013-12-13T08:00:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-03-22T13:47:33.000Z (over 11 years ago)
- Last Synced: 2025-01-18T07:11:59.769Z (over 1 year ago)
- Language: PHP
- Size: 164 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();