Skip to content

Instantly share code, notes, and snippets.

@PurpleBooth
Created October 23, 2014 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PurpleBooth/496632b8a6acf756033e to your computer and use it in GitHub Desktop.
Save PurpleBooth/496632b8a6acf756033e to your computer and use it in GitHub Desktop.
$total = ($origCount * $origRating) + $rating;
$number = $origCount + $count;
if ($number > 0) {
$origRating = $total / $number;
$origCount = $number;
return [$origRating, $origCount];
} else {
$origRating = 0;
$origCount = 0;
return [$origRating, $origCount];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment