Skip to content

Instantly share code, notes, and snippets.

@swvitaliy
Created February 13, 2014 03:02
Show Gist options
  • Save swvitaliy/8968998 to your computer and use it in GitHub Desktop.
Save swvitaliy/8968998 to your computer and use it in GitHub Desktop.
function plural($num, $single, $plural, $plural4) {
$num_mod_10 = $num % 10;
$num_mod_100 = $num % 100;
return $num === 1 || $num_mod_100 > 20 && $num_mod_10 === 1 ?
$single :
(($num_mod_100 < 10 || $num_mod_100 > 20) && $num_mod_10 <= 4 ?
$plural4 : $plural);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment