Skip to content

Instantly share code, notes, and snippets.

@jasonrhodes
Created October 14, 2012 18:51
Show Gist options
  • Save jasonrhodes/3889461 to your computer and use it in GitHub Desktop.
Save jasonrhodes/3889461 to your computer and use it in GitHub Desktop.
Calculate ERA
<?php
function calcERA($innings, $runs)
{
$innings = explode(".", number_format($innings, 1));
$thirds = ($innings[0] * 3) + $innings[1];
return round((9 * $runs) / ($thirds/3), 2);
}
# echo calcERA(9, 2); => 2
# echo calcERA(2.1, 6); => 23.14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment