PHP Classes

File: system/dependencies/sunra/php-simple-html-dom-parser/README.md

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/sunra/php-simple-html-dom-parser/README.md   Download  
File: system/dependencies/sunra/php-simple-html-dom-parser/README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: dFramework
Framework to build PHP applications
Author: By
Last change:
Date: 4 years ago
Size: 686 bytes
 

Contents

Class file image Download

php-simple-html-dom-parser

Version 1.5.2

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": "1.5.2"
    }

Usage

use Sunra\PhpSimple\HtmlDomParser;

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

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