https://github.com/tekintian/phphtmlparser
php html parser
https://github.com/tekintian/phphtmlparser
Last synced: 6 months ago
JSON representation
php html parser
- Host: GitHub
- URL: https://github.com/tekintian/phphtmlparser
- Owner: tekintian
- Created: 2020-06-28T12:45:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T12:57:17.000Z (over 5 years ago)
- Last Synced: 2025-02-15T05:28:14.879Z (8 months ago)
- Language: PHP
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
php-html-parser
==========================PHP Simple HTML DOM Parser
Install
-------```
composer require tekintian/phphtmlparser
```Usage
-----```php
use tekintian\phphtmlparser\HtmlDomParser;...
$dom = HtmlDomParser::str_get_html( $str );
or
$dom = HtmlDomParser::file_get_html( $file_name );$elems = $dom->find($elem_name);
...```