lysice / 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.
Installs: 16 712
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 352
Language:HTML
Requires
- php: >=5.3.2
- ext-mbstring: *
This package is auto-updated.
Last update: 2024-10-17 12:06:51 UTC
README
Version 1.5.3 Tips: This project is a fork from 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": { "lysice/php-simple-html-dom-parser": "1.5.*" }
Usage
use Sunra\PhpSimple\HtmlDomParser; ... $dom = HtmlDomParser::str_get_html( $str ); or $dom = HtmlDomParser::file_get_html( $file_name ); $elems = $dom->find($elem_name); ...