webvision / php-webv-parser
Extended package of Simple HTML DOM
1.0.0
2024-02-13 15:07 UTC
Requires
- php: >=5.3.2
- ext-mbstring: *
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
PHP Scrapper is an HTML DOM parser written in PHP, enabling easy manipulation of HTML content. It is derived from the PHP Simple HTML DOM Parser project. Additionally, the PHP Scrapper library aids in data extraction from websites by utilizing specified URLs and content elements.
Install via composer
composer require webvision/php-webv-parser
Usage
use WebVision\Scrapper; ... $dom = Scrapper::str_get_html( $string ); $elems = $dom->find($ele); ...