Website π contributte.org | Contact π¨π»βπ» f3l1x.io | Twitter π¦ @contributte
| This project is no longer being maintained. |
|---|
Rank-Face was a simple PHP library for checking your webpage rank/position across multiple search engines and services.
The library provided methods to check:
- Google PageRank - Page ranking from Google (0-10 scale)
- Google Cache Rank - Cache ranking from Google
- Seznam S-Rank - Czech search engine Seznam's S-Rank
- Alexa Traffic Rank - Global traffic ranking from Alexa
- Yahoo Backlinks - Number of backlinks indexed by Yahoo
- Yahoo Indexed Pages - Number of pages indexed by Yahoo
<?php
require_once 'RankFace.php';
require_once 'services/RankService.php';
require_once 'services/GoogleService.php';
require_once 'services/SeznamService.php';
require_once 'services/YahooService.php';
require_once 'services/AlexaService.php';
$rankFace = new RankFace();
echo 'Google PageRank: ' . $rankFace->getGooglePageRank('example.com') . '/10<br>';
echo 'Google Cache Rank: ' . $rankFace->getGoogleCacheRank('example.com') . '/10<br>';
echo 'Seznam SRank: ' . $rankFace->getSeznamSRank('example.com') . '/10<br>';
echo 'Alexa TrafficRank: ' . $rankFace->getAlexaTrafficRank('example.com') . '<br>';
echo 'Yahoo indexed pages: ' . $rankFace->getYahooPages('example.com') . '<br>';
echo 'Yahoo backlinks: ' . $rankFace->getYahooBacklinks('example.com') . '<br>';A demo preview file is included in preview.php.
This package was maintained by these authors.
Consider to support contributte development team. Also thank you for using this package.