Class NumberPattern
Representation of a number pattern.
- ICanBoogie\CLDR\NumberPattern uses ICanBoogie\Accessor\AccessorTrait (not available)
Methods summary
public
parse_number( number $number
)
: array
Parse a number according to the pattern and return its integer and decimal parts.
Parse a number according to the pattern and return its integer and decimal parts.
Parameters
$number
Returns
array
An array made with the integer and decimal parts of the number.
An array made with the integer and decimal parts of the number.
public
format_integer_with_group( integer $integer
, string $group_symbol
)
: string
Formats integer according to group pattern.
Formats integer according to group pattern.
Parameters
$integer
$group_symbol
Returns
string
public
format_integer_with_decimal( string|integer $integer
, string $decimal
, string $decimal_symbol
)
: string
Formats an integer with a decimal.
Formats an integer with a decimal.
Parameters
$integer
An integer, or a formatted integer as returned by
ICanBoogie\CLDR\NumberPattern::format_integer_with_group()
.$decimal
$decimal_symbol
Returns
string
Properties summary
Magic properties
public read-only
$decimal_digits
: integer
The number of required digits after decimal point. The string is padded with zeros if there is not enough digits. -1
means the decimal point should be dropped.
public read-only
$max_decimal_digits
: integer
The maximum number of digits after decimal point. Additional digits will be truncated.