PHP code example of maikelvanmaurik / schrapert
1. Go to this page and download the library: Download maikelvanmaurik/schrapert library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maikelvanmaurik / schrapert example snippets
namespace Crawl;
use Schrapert\Spider;
use Schrapert\Crawl\ResponseInterface;
use Schrapert\Http\ResponseInterface as HttpResponse;
use Schrapert\Http\Request as HttpRequest;
use DOMDocument;
use DOMXPath;
use DOMElement;
class BlogSpider extends Spider
{
public function parse(ResponseInterface $response)
{
if(!$response instanceof HttpResponse) {
return;
}
$doc = new DOMDocument('1.0');
$doc->loadHTML((string)$response->getBody());
$xpath = new DOMXPath($doc);
$nodes = $xpath->query('//a');
foreach($nodes as $node) {
/* @var $node DOMElement */
$uri = $this->uri->join($node->getAttribute('href'), $response->getUri());
yield new HttpRequest($uri);
}
}
}