Skip to content

Instantly share code, notes, and snippets.

@sartas
Last active December 21, 2015 00:28
Show Gist options
  • Select an option

  • Save sartas/6219913 to your computer and use it in GitHub Desktop.

Select an option

Save sartas/6219913 to your computer and use it in GitHub Desktop.
function plural($number, $suffix)
{
$keys = array(2, 0, 1, 1, 1, 2);
$mod = $number % 100;
$suffix_key = ($mod > 7 && $mod < 20) ? 2 : $keys[min($mod % 10, 5)];
return $suffix[$suffix_key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment