PHP code example of scribilicious / tinylistscraper
1. Go to this page and download the library: Download scribilicious/tinylistscraper 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/ */
scribilicious / tinylistscraper example snippets
ad all results from all the scrapers
$oScraper = new TinyListScraper\TinyListScraper();
$aResults = $oScraper->get('search some text');
print_r($aResults);
// Load just the results from verge
$aResults = $oScraper->get('search some text', array('verge'));
print_r($aResults);