PHP Classes

PHP Search Analytics Utilities: Find keywords to optimize pages for search engines

Recommend this page to a friend!
  Info   View files Example   View files View files (31)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog (1)    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 128 All time: 9,371 This week: 126Up
Version License PHP version Categories
search-analytics-uti 1.0.21GNU General Publi...5PHP 5, Searching, Web services, SEO
Description 

Author

This package can find keywords to optimize pages for search engines.

It can perform several actions that can help find better keywords to use in Web site pages to make them rank better on search engine results. Currently, it can:

- Use the Google Ads API to find the best long-tail keywords
- Test given keywords to find keyword golden ratio
- Test keywords from CSV file obtained using the Google Planning Tool to find their keyword golden ratio

Innovation Award
PHP Programming Innovation award nominee
August 2021
Number 3
When you want to create new Web pages to rank higher in the Google search results, you need to pick keywords used by many users searching in Google carefully.

This package can find the keywords equivalent to other given keywords and are used by more Google users.

Manuel Lemos
Picture of Juraj Puchký
  Performance   Level  
Name: Juraj Puchký is available for providing paid consulting. Contact Juraj Puchký .
Classes: 17 packages by
Country: Czech Republic Czech Republic
Age: 42
All time rank: 109511 in Czech Republic Czech Republic
Week rank: 360 Up3 in Czech Republic Czech Republic Up
Innovation award
Innovation award
Nominee: 6x

Example

<?php

include_once __DIR__.'/../vendor/autoload.php';

use
BABA\Search\Analyzers\Suggestion;
use
BABA\Search\Engines\Google;


$engine = new Google();
$cache = new \BABA\Cache\Cache(new \BABA\Cache\Drivers\Disk());
if(
$engine->authentication()) {
   
$keyword = 'test';
    try {
       
$results = (new Suggestion($engine,$cache))->getResult([$keyword], 1021, [2203], ['number-results' => 100, 'max-volume' => NULL, 'min-volume' => 10]);
       
var_dump($results);
    } catch(
Exception $e) {
        echo
"{$e->getMessage()}\n";
    }
}


Details

Find keyword golden ratio (kgr) to optimize pages for search engines and other utilities for seo in php

my page TOP 10 on Google within 48 hours

Make your page TOP 10 on google in 48 hours

Quick tool which helps you make your page TOP 10 on Google in 48 hours

Main purpose of this library is to automate SEO routine for finding KGR keyword golden ratio. This tool will help you simply on long tail keyword make your page top 10 on google within 48 hours.

Install

git clone https://github.com/sjurajpuchky/find-keyword-golden-ratio-kgr-to-optimize-pages-for-search-engines-helps-you-top10-google-php.git
cd search-analytics-utilities
composer install

For google-ads-api suggestions you need activated mmc account and developer key, once you can't have it you can use sample kgr-csv.php with keywords and volumes in csv, which you can obtain from google-ads onr another seo tool as well. Feel free to look into samples folder and checkout

Free keyword golden ratio tool.

For that is needed to find out number of search results on Google and monthly search volume for each keyword idea.

Dependencies

Our library depends on the package "baba/object-cache", which is used for prevent banning on Google.

Simple library to find out

  • long tail keywords by Google Ads API (MMC account + API needed)
  • KGR (keyword golden ratio), you can use against your ideas
  • if you do not have MMC account you can export keywords from keyword planning tool on Google Ads or any other list and use CSV to find out your KGR

Supported engines

  • Google

Supported APIs

  • Google ADS API with MMC account, developer token
  • Collabim API

Examples

In folder samples you can find some basic usage of library.

php samples/kgr-csv.php ./samples/keywords.csv ./results.csv ./future.csv

How to use it?

As you can see in samples you have to first make instance of Engine then pass Engine to Analyzer tool, which has an interface to call operation with results. Instance of Engine requires instance of Cache Driver to store results in the cache.

Tutorial

https://www.youtube.com/watch?v=KQsGHZSY64I

Where get long tail keywords?

in application is also implemented google-ads API keyword planner, for which you must have MMC account with activated developer token. Or export results from keyword planner in ADS to CSV, (keyword;volume) format. If you do not have google-ads-api developer token, you can use collabim (https://www.collabim.com/?promoCode=mRfeciXH1V) Wonderful is also keyword-researcher (http://babatumise.clevergiz.hop.clickbank.net?cgpage=keyword-researcher) and Answer the public (https://answerthepublic.com/)

License

GPL-2.0-only

Authors

Juraj Puchký - BABA Tumise s.r.o. <info@baba.bj>

https://www.seoihned.cz - SEO optilamizace

https://www.baba.bj - Tvorba webových stránek

https://www.webtrace.cz - Tvorba portál? a ecommerce b2b/b2c (eshop?) na zakázku

Log

1.0.0 - first release

1.0.1 - some fixes regarding kgr specification

1.0.2 - future keywords

1.0.3 - better statistics in sample

1.3.6 - tested google ads api suggestions with kgr + samples

Copyright

&copy; 2021 BABA Tumise s.r.o.

Thanks to

Created with help of Dalibor Jaro? - CEO of Collabim and their webinar about KGR SEO method (https://collabim.cz/kgr?promoCode=mRfeciXH1V),

you can also check SEO trénink (https://collabim.cz/seo-trenink?promoCode=mRfeciXH1V) which is one of the actually most honored SEO course on the Czech market.

Special discount

for Collabim services and products you can use discount coupon AFF-DIS-30, coupon is possible to use only with links mentioned above.


  Files folder image Files  
File Role Description
Files folder imagesamples (9 files)
Files folder imagesrc (7 files, 3 directories)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation
Accessible without login HTML file test.html Doc. Documentation

  Files folder image Files  /  samples  
File Role Description
  Accessible without login Plain text file collabim.ini Data Auxiliary data
  Accessible without login Plain text file google-ads.ini Data Auxiliary data
  Accessible without login Plain text file keywords.csv Data Auxiliary data
  Accessible without login Plain text file kgr-csv.php Example Example script
  Accessible without login Plain text file kgr.php Example Example script
  Accessible without login Plain text file position.php Example Example script
  Accessible without login Plain text file results.php Example Example script
  Accessible without login Plain text file suggestion.php Example Example script
  Accessible without login Plain text file volume.php Example Example script

  Files folder image Files  /  src  
File Role Description
Files folder imageAnalyzers (5 files)
Files folder imageEngines (2 files, 1 directory)
Files folder imageExceptions (2 files)
  Plain text file AbstractEngine.php Class Class source
  Plain text file Analyzer.php Class Class source
  Plain text file Engine.php Class Class source
  Plain text file EngineEngineCollection.php Class Class source
  Plain text file IAnalyzer.php Class Class source
  Plain text file IEngineCollection.php Class Class source
  Plain text file ISearchEngine.php Class Class source

  Files folder image Files  /  src  /  Analyzers  
File Role Description
  Plain text file KGR.php Class Class source
  Plain text file Position.php Class Class source
  Plain text file Results.php Class Class source
  Plain text file Suggestion.php Class Class source
  Plain text file Volume.php Class Class source

  Files folder image Files  /  src  /  Engines  
File Role Description
Files folder imageGoogle (2 files)
  Plain text file Collabim.php Class Class source
  Plain text file Google.php Class Class source

  Files folder image Files  /  src  /  Engines  /  Google  
File Role Description
  Plain text file Languages.php Class Class source
  Plain text file Locations.php Class Class source

  Files folder image Files  /  src  /  Exceptions  
File Role Description
  Plain text file TooManyRequestsException.php Class Class source
  Plain text file UnknownHttpCodeException.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:128
This week:0
All time:9,371
This week:126Up