devwaqas/googlerankcheck

This package is to get google search results

dev-main 2022-02-09 23:52 UTC

This package is auto-updated.

Last update: 2024-10-10 05:53:37 UTC


README

Getting Started

This is simple keyword rank checker tool.

Installation

composer require devwaqas/googlerankcheck

Usage

$client = new SearchEngine();

//Set Search Engine eg. google.com,google.ae,google.sa.....
$client->setEngine('https://www.google.ae');

//return array with keywords and position
$result = $client->search(['keyword 1','keyword 2']);

print_r($result);