Skip to content

Instantly share code, notes, and snippets.

@ar7n
Forked from fomigo/gist:2382775
Last active August 29, 2015 14:22
Show Gist options
  • Save ar7n/f2604a28c931b99b9d71 to your computer and use it in GitHub Desktop.
Save ar7n/f2604a28c931b99b9d71 to your computer and use it in GitHub Desktop.
<?php
/*
echo plural_form(42, array('арбуз', 'арбуза', 'арбузов'));
*/
function plural_form($n, $forms) {
return $n%10==1&&$n%100!=11?$forms[0]:($n%10>=2&&$n%10<=4&&($n%100<10||$n%100>=20)?$forms[1]:$forms[2]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment