PHP code example of jrmajor / pluralrules
1. Go to this page and download the library: Download jrmajor/pluralrules library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jrmajor / pluralrules example snippets
Major\PluralRules\PluralRules::select('en', 1); // 'one'
Major\PluralRules\PluralRules::select('en', 2); // 'other'
Major\PluralRules\PluralRules::select('pl', 1); // 'one'
Major\PluralRules\PluralRules::select('pl', 42); // 'few'
Major\PluralRules\PluralRules::select('pl', 45); // 'many'
Major\PluralRules\PluralRules::select('pl', 1.5); // 'other'