PHP implementation of social hot ranking algorithm like Reddit, HackerNews
This is PHP implementation of various social media news "Hot" Ranking algoritm., (*1)
Reddit Ranking, (*2)
HackerNews Ranking, (*3)
$ composer require haphan/social-ranking
<?php require 'vendor/autoload.php'; use Haphan\SocialRanking\Reddit; use Haphan\SocialRanking\HackerNews; $redditScore = Reddit::score($age, $upVote, $downVote); $hackerNewsScore = HackerNews::scoreV1($age, $upVote, $downVote);
Sources Download
MIT