webvision/php-webv-parser

Extended package of Simple HTML DOM

1.0.0 2024-02-13 15:07 UTC

This package is auto-updated.

Last update: 2024-04-13 17:28:28 UTC


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);
...