Created
January 27, 2020 09:17
-
-
Save Stmol/f3dd1f0297cb19a40e86062deac61f49 to your computer and use it in GitHub Desktop.
Pluralization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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