Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.23 KB

README.md

File metadata and controls

31 lines (20 loc) · 1.23 KB

Elo Rating PHP

A PHP class which implements the Elo rating system.

Usage

require 'src/Rating/Rating.php';

// player A elo = 1000
// player B elo = 2000
// player A lost
// player B win

$rating = new Rating(1000, 2000, 0, 1);

// player A elo = 1000
// player B elo = 2000
// player A draw
// player B draw

$rating = new Rating(1000, 2000, .5, .5);

$results = $rating->getNewRatings();

echo "New rating for player A: " . $results['a'];
echo "New rating for player B: " . $results['b'];

Credits

Creative Commons License
Elo Rating PHP by Michal Chovanec is licensed under a Creative Commons Attribution 4.0 International License.