php-cuong / php-simple-html-dom-parser

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.

Repository from Github https://github.comphp-cuong/php-simple-html-dom-parserRepository from Github https://github.comphp-cuong/php-simple-html-dom-parser

php-simple-html-dom-parser

Version 1.9.1

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": {
    "php-cuong/php-simple-html-dom-parser": "1.9.1"
    }

Usage

use PHPCuong\PHPSimple\HtmlDomParser;

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

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

About

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.


Languages

Language:PHP 99.4%Language:HTML 0.4%Language:CSS 0.2%