\Gettext\LanguagesCategory

A helper class that handles a single category rules (eg 'zero', 'one', .

..) and its formula and examples.

Summary

Methods
Properties
Constants
__construct()
getExampleIntegers()
expandExamples()
$id
$formula
$examples
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$id

$id : string

The category identifier (eg 'zero', 'one', .

.., 'other').

Type

string

$formula

$formula : string|null

The gettext formula that identifies this category (null if and only if the category is 'other').

Type

string|null

$examples

$examples : string|null

The CLDR representation of some exemplar numeric ranges that satisfy this category.

Type

string|null

Methods

__construct()

__construct(string  $cldrCategoryId, string  $cldrFormulaAndExamples) 

Initialize the instance and parse the formula.

Parameters

string $cldrCategoryId

The CLDR category identifier (eg 'pluralRule-count-one').

string $cldrFormulaAndExamples

The CLDR formula and examples (eg 'i = 1 and v = 0 @integer 1').

Throws

\Exception

getExampleIntegers()

getExampleIntegers() : array<mixed,integer>

Return a list of numbers corresponding to the $examples value.

Throws

\Exception

Throws an Exception if we weren't able to expand the examples.

Returns

array<mixed,integer>

expandExamples()

expandExamples(string  $examples) : array<mixed,integer>

Expand a list of examples as defined by CLDR.

Parameters

string $examples

A string like '1, 2, 5...7, …'.

Throws

\Exception

Throws an Exception if we weren't able to expand $examples.

Returns

array<mixed,integer>