satoripophq / simple_html_dom
There is no license information available for the latest version (1.5) of this package.
A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way!
Package info
github.com/sabri-elgueder/simple_html_dom
Language:HTML
pkg:composer/satoripophq/simple_html_dom
1.5
2017-11-25 15:02 UTC
Requires
- php: >=5.2.4
- ext-mbstring: *
This package is not auto-updated.
Last update: 2026-03-15 11:51:16 UTC
README
Version 1.5
Adaptation for Composer and PSR-4 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": { "satoripophq/php-simple-html-dom-parser": "1.5" }
Usage
use SimpleHtmlDom; ... $dom = SimpleHtmlDom::str_get_html( $str ); or $dom = SimpleHtmlDom::file_get_html( $file_name ); $elems = $dom->find($elem_name); ...