NumberFormatter::getSymbol

numfmt_get_symbol

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

NumberFormatter::getSymbol -- numfmt_get_symbolObtém um valor de símbolo

Descrição

Estilo orientado a objetos

public NumberFormatter::getSymbol(int $symbol): string|false

Estilo procedural

numfmt_get_symbol(NumberFormatter $formatter, int $symbol): string|false

Obtém um símbolo associado ao formatador. O formatador usa símbolos para representar os caracteres especiais dependentes de localidade em um número, por exemplo o sinal de percentagem. Esta API não é suportada para formatadores baseados em regras.

Parâmetros

formatter

Objeto NumberFormatter.

symbol

Especificador de símbolo, uma das constantes de símbolo de formatação.

Valor Retornado

A string do símbolo ou false em caso de erro.

Exemplos

Exemplo #1 Exemplo de numfmt_get_symbol()

<?php
$fmt
= numfmt_create( 'de_DE', NumberFormatter::DECIMAL );
echo
"Sep: ".numfmt_get_symbol($fmt, NumberFormatter::GROUPING_SEPARATOR_SYMBOL)."\n";
echo
numfmt_format($fmt, 1234567.891234567890000)."\n";
numfmt_set_symbol($fmt, NumberFormatter::GROUPING_SEPARATOR_SYMBOL, "*");
echo
"Sep: ".numfmt_get_symbol($fmt, NumberFormatter::GROUPING_SEPARATOR_SYMBOL)."\n";
echo
numfmt_format($fmt, 1234567.891234567890000)."\n";
?>

Exemplo #2 Exemplo OO

<?php
$fmt
= new NumberFormatter( 'de_DE', NumberFormatter::DECIMAL );
echo
"Sep: ".$fmt->getSymbol(NumberFormatter::GROUPING_SEPARATOR_SYMBOL)."\n";
echo
$fmt->format(1234567.891234567890000)."\n";
$fmt->setSymbol(NumberFormatter::GROUPING_SEPARATOR_SYMBOL, "*");
echo
"Sep: ".$fmt->getSymbol(NumberFormatter::GROUPING_SEPARATOR_SYMBOL)."\n";
echo
$fmt->format(1234567.891234567890000)."\n";
?>

O exemplo acima produzirá:

Sep: .
1.234.567,891
Sep: *
1*234*567,891

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top