astro / searchengine
Google search crawler
1.0.1
2022-02-12 13:14 UTC
This package is auto-updated.
Last update: 2025-06-12 20:28:35 UTC
README
Crawls google.com and google.ae
Installation
Use composer composer to install searchengine.
composer require astro/searchengine
Usage
Create a new test PHP file
<?php namespace Astro; require_once './vendor/autoload.php'; #create new instance $client = new SearchEngine(); #set search engine (google.com or google.ae) $client->setEngine("google.ae"); #enter search keywords $results = $client->search(["amazon","tuna"]); #print the results print_r($results); ?>
Run your php file.
php test.php