Skip to content

Instantly share code, notes, and snippets.

@Stmol
Created January 27, 2020 09:17
Show Gist options
  • Save Stmol/f3dd1f0297cb19a40e86062deac61f49 to your computer and use it in GitHub Desktop.
Save Stmol/f3dd1f0297cb19a40e86062deac61f49 to your computer and use it in GitHub Desktop.
Pluralization
<?php
function declOfNum($num, $titles) {
$cases = array(2, 0, 1, 1, 1, 2);
return $num . " " . $titles[($num % 100 > 4 && $num % 100 < 20) ? 2 : $cases[min($num % 10, 5)]];
}
echo declOfNum(5, array('человек просит', 'человека просят', 'человек просят'));
// https://ru.stackoverflow.com/questions/215279/%D0%A1%D0%BA%D0%BB%D0%BE%D0%BD%D0%B5%D0%BD%D0%B8%D1%8F-%D1%81%D0%BB%D0%BE%D0%B2-%D0%BD%D0%B0-php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment