Helper for rendering text based on a count number (like the I18n plural translation helper, but when translation is not needed).

Please note that we did not write any hard-coded rules for languages, as languages can evolve, we prefered to let the developer define the rules himself, instead of potentially break applications if we change rules in the future.

However, you can find most of the up-to-date plural rules for most languages in those links: - http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html - https://developer.mozilla.org/en-US/docs/Localization_and_Plurals

 Methods

__construct()

__construct() 

Exceptions

\Zend\I18n\Exception\ExtensionNotLoadedException if ext/intl is not present

Given an array of strings, a number and, if wanted, an optional locale (the default one is used otherwise), this picks the right string according to plural rules of the locale

__invoke(array | string $strings, int $number) : string

Parameters

$strings

arraystring

$number

int

Exceptions

\Zend\I18n\Exception\InvalidArgumentException

Returns

string

Get the plural rule to use

getPluralRule() : \Zend\I18n\Translator\Plural\Rule

Get the view object

getView() : null | \Zend\View\Renderer\RendererInterface
Inherited

inherited_from \Zend\View\Helper\AbstractHelper::getView()

Returns

Set the plural rule to use

setPluralRule(\Zend\I18n\Translator\Plural\Rule | string $pluralRule) : \Zend\I18n\View\Helper\Plural

Set the View object

setView(\Zend\View\Renderer\RendererInterface $view) : \Zend\View\Helper\AbstractHelper
Inherited

inherited_from \Zend\View\Helper\AbstractHelper::setView()

Parameters

Returns

 Properties

 

Plural rule to use

$rule : \Zend\I18n\Translator\Plural\Rule

 

View object instance

$view : \Zend\View\Renderer\RendererInterface
Inherited

inherited_from \Zend\View\Helper\AbstractHelper::$$view