itul / php-simple-html-dom-parser
This is a modified version to work with PHP 7.4+. 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.0.1
2023-03-30 18:07 UTC
Requires
- php: >=5.3.2
- ext-mbstring: *
This package is auto-updated.
Last update: 2025-03-01 00:39:54 UTC
README
Version 1.0.0
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": {
"itul/php-simple-html-dom-parser": "^1.0"
}
Usage
use Sunra\PhpSimple\HtmlDomParser;
...
$dom = HtmlDomParser::str_get_html( $str );
or
$dom = HtmlDomParser::file_get_html( $file_name );
$elems = $dom->find($elem_name);
...