Skip to content

php-spider

1,330 1 6 MIT
v0.7.2 (10 Dec 2023) Mar 16 2013 69 (month)

php-spider is a PHP library for web crawling and scraping. It allows developers to easily navigate and extract data from websites by simulating a web browser's behavior.

  • supports two traversal algorithms: breadth-first and depth-first
  • supports crawl depth limiting, queue size limiting and max downloads limiting
  • supports adding custom URI discovery logic, based on XPath, CSS selectors, or plain old PHP
  • comes with a useful set of URI filters, such as Domain limiting
  • supports custom URI filters, both prefetch (URI) and postfetch (Resource content)
  • supports custom request handling logic
  • supports Basic, Digest and NTLM HTTP authentication. See example.
  • comes with a useful set of persistence handlers (memory, file)
  • supports custom persistence handlers
  • collects statistics about the crawl for reporting
  • dispatches useful events, allowing developers to add even more custom behavior
  • supports a politeness policy

This Spider does not support Javascript.

Example Use


use Example\StatsHandler;
use VDB\Spider\Discoverer\XPathExpressionDiscoverer;
use Symfony\Contracts\EventDispatcher\Event;
use VDB\Spider\Event\SpiderEvents;
use VDB\Spider\Spider;

require_once('example_complex_bootstrap.php');

// Create Spider
$spider = new Spider('http://dmoztools.net');

// Add a URI discoverer. Without it, the spider does nothing. In this case, we want <a> tags from a certain <div>
$spider->getDiscovererSet()->set(new XPathExpressionDiscoverer("//div[@id='catalogs']//a"));

// Set some sane options for this example. In this case, we only get the first 10 items from the start page.
$spider->getDiscovererSet()->maxDepth = 1;
$spider->getQueueManager()->maxQueueSize = 10;

// Let's add something to enable us to stop the script
$spider->getDispatcher()->addListener(
    SpiderEvents::SPIDER_CRAWL_USER_STOPPED,
    function (Event $event) {
        echo "\nCrawl aborted by user.\n";
        exit();
    }
);

// Add a listener to collect stats to the Spider and the QueueMananger.
// There are more components that dispatch events you can use.
$statsHandler = new StatsHandler();
$spider->getQueueManager()->getDispatcher()->addSubscriber($statsHandler);
$spider->getDispatcher()->addSubscriber($statsHandler);

// Execute crawl
$spider->crawl();

// Build a report
echo "\n  ENQUEUED:  " . count($statsHandler->getQueued());
echo "\n  SKIPPED:   " . count($statsHandler->getFiltered());
echo "\n  FAILED:    " . count($statsHandler->getFailed());
echo "\n  PERSISTED:    " . count($statsHandler->getPersisted());

// Finally we could do some processing on the downloaded resources
// In this example, we will echo the title of all resources
echo "\n\nDOWNLOADED RESOURCES: ";
foreach ($spider->getDownloader()->getPersistenceHandler() as $resource) {
    echo "\n - " . $resource->getCrawler()->filterXpath('//title')->text();
}

Alternatives / Similar


2,917 v2.1.1 (8 months ago) Jul 17 2018 compare
1,342 v3.2.0 (4 months ago) Dec 27 2021 compare
513 3.0.0 (3 months ago) May 04 2020 compare
316 v1.9.5 (13 days ago) Apr 18 2022 compare

Other Languages

22,765 v2.1.0 (4 years ago) May 14 2018 compare
7,558 v1.3.4 (4 years ago) Feb 15 2020 compare
2,540 2024-07-31 (7 days ago) Jun 06 2019 compare
654 2024-07-21 (17 days ago) Feb 09 2017 compare
51,911 2.11.2 (2 months ago) Jul 26 2019 compare
1,486 1.0.4 (1 year, 11 months ago) Nov 22 2014 compare
5,680 v0.18.0 (1 year, 4 months ago) Aug 06 2019 compare
2,031 (3 years ago) Nov 20 2016 compare
2,901 1.4.3 (10 months ago) Sep 04 2013 compare
6,665 2.0.2 (22 days ago) Sep 10 2012 compare
6,089 1.1.14 (2 years ago) Jul 26 2019 compare
799 0.7.1 (6 months ago) Jul 25 2009 compare
1,308 3.0.0 (1 year, 11 months ago) Dec 27 2011 compare
3,075 1.5.0 (5 months ago) Sep 30 2018 compare
3,281 0.9.13 (1 year, 19 days ago) Jul 04 2017 compare
242 1.33.0 (5 months ago) Feb 05 2023 compare
1,741 0.8.5 (1 year, 11 months ago) Oct 17 2018 compare
10,745 1.1.9 (5 years ago) Aug 24 2018 compare
155 2.2.4 (3 years ago) Dec 22 2019 compare
200 1.0.0-beta8.4 (1 year, 1 month ago) Apr 18 2019 compare
414 0.1.3 (1 year, 6 days ago) Feb 20 2022 compare
Was this page helpful?