chenhaitang/php-simple-html-dom-parser

this is a php simple html dom parser repo for composer.

2.0.1 2020-06-13 09:46 UTC

This package is auto-updated.

Last update: 2024-04-13 18:08:00 UTC


README

Version 1.0

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.

Install

composer.phar

"require": {
    "chenhaitang/php-simple-html-dom-parser": "1.0"
    }

Usage

use Trident\PhpSimple\HtmlDomParser;

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

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