Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.
/ rankface Public archive

πŸ’€ [DISCONTINUED] 🐘 Simple PHP library to collect page ranks

Notifications You must be signed in to change notification settings

contributte/rankface

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Website πŸš€ contributte.org | Contact πŸ‘¨πŸ»β€πŸ’» f3l1x.io | Twitter 🐦 @contributte

Disclaimer

⚠️ This project is no longer being maintained.

About

Rank-Face was a simple PHP library for checking your webpage rank/position across multiple search engines and services.

Features

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

Usage

<?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.

Development

This package was maintained by these authors.


Consider to support contributte development team. Also thank you for using this package.

About

πŸ’€ [DISCONTINUED] 🐘 Simple PHP library to collect page ranks

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Packages

No packages published

Languages