mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
Initial import of composer dependencies (--no-dev)
This commit is contained in:
parent
71fc952126
commit
546606b208
696 changed files with 54815 additions and 44 deletions
38
vendor/sunra/php-simple-html-dom-parser/README.md
vendored
Normal file
38
vendor/sunra/php-simple-html-dom-parser/README.md
vendored
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
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
|
||||
-----
|
||||
|
||||
```php
|
||||
use Sunra\PhpSimple\HtmlDomParser;
|
||||
|
||||
...
|
||||
$dom = HtmlDomParser::str_get_html( $str );
|
||||
or
|
||||
$dom = HtmlDomParser::file_get_html( $file_name );
|
||||
|
||||
$elems = $dom->find($elem_name);
|
||||
...
|
||||
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue