dev-master
9999999-dev https://github.com/andig/php-html-parserRefactored repack of https://github.com/hkk12369/php-html-parser
WTFPL
The Requires
- php >=5.3
The Development Requires
html parser css selector
Refactored repack of https://github.com/hkk12369/php-html-parser
A simple and efficient DOMDocument based PHP HTML and XML Parser. It accepts both css selector and xpath queries to search the document and handles malformed HTML as well., (*2)
Example:, (*3)
$html = HtmlParser::from_string('<div id="outer"><span class="red">Some Text</span></div>'); $text = $html->find('#outer .red', 0)->text; echo $text; // outputs "Some Text"
Originally source code taken from https://github.com/hkk12369/php-html-parser. Test cases and refactoring for composer/packagist by https://github.com/andig/php-html-parser., (*4)
Define the following requirement in your composer.json file:, (*5)
{ "require": { "andig/php-html-parser": "dev-master" } }
Refactored repack of https://github.com/hkk12369/php-html-parser
WTFPL
html parser css selector