daguilar / php-simple-html-dom-parser
This package is abandoned and no longer maintained.
No replacement package was suggested.
Composer adaptation of: A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.
v1.5.2
2016-11-22 22:57 UTC
Requires
- php: >=5.3.2
- ext-mbstring: *
This package is auto-updated.
Last update: 2021-03-22 08:18:15 UTC
README
Version 2.0 (Updated to PHP 7.1, 7.2 and 7.3)
Adaptation for Composer and PSR-0 of:
A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.
http://simplehtmldom.sourceforge.net/
Install
composer.phar
"require": { "daguilarm/php-simple-html-dom-parser": "1.5.2" }
Usage
use Sunra\PhpSimple\HtmlDomParser; ... $dom = HtmlDomParser::str_get_html( $str ); or $dom = HtmlDomParser::file_get_html( $file_name ); $elems = $dom->find($elem_name); ...