sb15/simple-html-dom-parser-php

This package is abandoned and no longer maintained. The author suggests using the simplehtmldom/simplehtmldom package instead.

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.3 2020-01-14 14:08 UTC

This package is auto-updated.

Last update: 2020-01-15 13:19:17 UTC


README

Version 1.0

Fork https://github.com/sunra/php-simple-html-dom-parser

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": {
    "sunra/php-simple-html-dom-parser": "v1.5.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);
...