caophihung94 / php-simple-html-dom-parser
PHP Simple HTML DOM Parser with namespace and PHP 7.4 compatible
Package info
github.com/caophihung94/php-simple-html-dom-parser
pkg:composer/caophihung94/php-simple-html-dom-parser
v1.7.5
2020-08-18 07:09 UTC
Requires
- php: >=5.3.2
This package is auto-updated.
Last update: 2026-03-05 20:29:21 UTC
README
Version 1.9.1 - PHP 8.x compatible PHP Simple HTML DOM Parser changelog: https://sourceforge.net/projects/simplehtmldom/files/simplehtmldom/1.9.1/
Install
composer require caophihung94/php-simple-html-dom-parser
Usage
use HungCP\PhpSimpleHtmlDom\HtmlDomParser; ... $dom = HtmlDomParser::str_get_html( $str ); or $dom = HtmlDomParser::file_get_html( $file_name ); $elems = $dom->find($elem_name); ...