mediashare/scraper

Scrapes the information from the targeted page and provides a DomCrawler

0.1.6 2021-11-27 19:41 UTC

This package is auto-updated.

Last update: 2024-03-29 04:11:27 UTC


README

💫 Scrapes the information from the targeted page and provides a DomCrawler.

DomCrawler

Scraper use DomCrawler library. This is symfony component for DOM navigation for HTML and XML documents. You can retrieve Documentation Here.

Installation

composer require mediashare/scraper

Usage

<?php
require 'vendor/autoload.php';

use Mediashare\Scraper\Scraper;
$scraper = new Scraper("http://marquand.pro");
$scraper->run();
dump($scraper);