You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
685 B
41 lines
685 B
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
|
|
```json
|
|
"require": {
|
|
"sunra/php-simple-html-dom-parser": "v1.5.0"
|
|
}
|
|
```
|
|
|
|
Usage
|
|
-----
|
|
|
|
```php
|
|
use Sunra\PhpSimple\HtmlDomParser;
|
|
|
|
...
|
|
$dom = HtmlDomParser::str_get_html( $str );
|
|
or
|
|
$dom = HtmlDomParser::file_get_html( $file_name );
|
|
|
|
$elems = $dom->find($elem_name);
|
|
...
|
|
|
|
```
|
|
|