ds-organizacion-administrativa/scripts/vendor/sunra/php-simple-html-dom-parser
Inigo Flores 32e6806e5c Refactor scripts into single one
Fix formatting

Fix historical
2016-04-23 20:38:50 +02:00
..
Src/Sunra/PhpSimple Refactor scripts into single one 2016-04-23 20:38:50 +02:00
composer.json Refactor scripts into single one 2016-04-23 20:38:50 +02:00
README.md Refactor scripts into single one 2016-04-23 20:38:50 +02:00

php-simple-html-dom-parser

Version 1.5

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

  • package name: "sunra/php-simple-html-dom-parser": "dev-master"

Usage

use Sunra\PhpSimple\HtmlDomParser;

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

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