Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 644 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 644 Bytes

SEOstats: SEO data library for PHP

SEOstats is a powerful open source tool to get a lot of SEO relevant data such as detailed backlink analyses, keyword and traffic statistics, website trends, page authority, the Google Pagerank, the Alexa Trafficrank and much more.

SEOstats offers over 50 different methods to request SEO relevant data for websites and gathers data from Google, Yahoo, Bing, SEMRush, SEOmoz, Alexa, Facebook and Twitter.

Usage

Example Usage

<?php
try 
{
  $url = new SEOstats("http://www.domain.com/");
  print $url->Google_Page_Rank();
} 
catch (SEOstatsException $e) 
{
  die($e->getMessage());
}