unbug4120/php-simple-html

A fast, simple and reliable HTML document parser for PHP.

v1.0 2021-05-04 07:50 UTC

This package is not auto-updated.

Last update: 2024-05-05 08:47:53 UTC


README

Version 1.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": {
    "unbug4120/php-simple-html-dom-parser": "1.0"
    }

Usage

include 'vendor/autoload.php';
use duongdat\phpSimple\HtmlDomParser;

...
$dom = HtmlDomParser::str_get_html( $str );
or 
$dom = HtmlDomParser::file_get_html( $file_name );

$elems = $dom->find($elem_name);
...