Skip to content

PHP Simple HTML DOM Parser adaptation for Composer and PSR-0

Notifications You must be signed in to change notification settings

keithiiiiu/php-simple-html-dom-parser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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);
...

Updates

combined with this file: https://github.com/sunra/php-simple-html-dom-parser

composer require keithiiiiu/php-simple-html-dom-parser

About

PHP Simple HTML DOM Parser adaptation for Composer and PSR-0

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 52.8%
  • PHP 43.1%
  • CSS 2.2%
  • JavaScript 1.9%