PHP code example of monkeyphp / php-spider
1. Go to this page and download the library: Download monkeyphp/php-spider 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/ */
monkeyphp / php-spider example snippets
use PhpSpider\Spider\Spider;
$spider = new Spider();
$spider->crawl('https://www.example.com');
use PhpSpider\Spider\Spider;
use Zend\EventManager\Event;
$listener function ($event) {
$uri = $event->getParam('uri');
echo $uri;
};
$spider = new Spider();
$spider->getEventManager()->attach(Spider::SPIDER_CRAWL_PAGE_PRE, $listener, 1000);
$spider->crawl('https://www.example.com');
bash
$ php ./examples/example_0.php