Документация PHP


NumberFormatter::getSymbol

NumberFormatter::parseCurrency

NumberFormatter

PHP Manual


NumberFormatter::getTextAttribute

numfmt_get_text_attribute

(No version information available, might be only in CVS)

numfmt_get_text_attribute — Get a text attribute

Описание

Object oriented style

string NumberFormatter::getTextAttribute ( integer $attr )

Procedural style

string numfmt_get_text_attribute ( NumberFormatter $fmt , integer $attr )

Get a text attribute associated with the formatter. An example of a text attribute is the suffix for positive numbers. If the formatter does not understand the attributre, U_UNSUPPORTED_ERROR error is produced. Rule-based formatters only understand NumberFormatter::DEFAULT_RULESET and NumberFormatter::PUBLIC_RULESETS.

Список параметров

fmt

NumberFormatter object.

attr

Attribute specifier - one of the text attribute constants.

Возвращаемые значения

Return attribute value on success, or FALSE on error.

Примеры

Пример #1 numfmt_get_text_attribute() example

<?php
$fmt 
numfmt_create'de_DE'NumberFormatter::DECIMAL );
echo 
"Prefix: ".numfmt_get_text_attribute($fmtNumberFormatter::NEGATIVE_PREFIX)."\n";
echo 
numfmt_format($fmt, -1234567.891234567890000)."\n";
numfmt_set_text_attribute($fmtNumberFormatter::NEGATIVE_PREFIX"MINUS");
echo 
"Prefix: ".numfmt_get_text_attribute($fmtNumberFormatter::NEGATIVE_PREFIX)."\n";
echo 
numfmt_format($fmt, -1234567.891234567890000)."\n";
?>

Пример #2 OO example

<?php
$fmt 
= new NumberFormatter'de_DE'NumberFormatter::DECIMAL );
echo 
"Prefix: ".$fmt->getTextAttribute(NumberFormatter::NEGATIVE_PREFIX)."\n";
echo 
$fmt->format(-1234567.891234567890000)."\n";
$fmt->setTextAttribute(NumberFormatter::NEGATIVE_PREFIX"MINUS");
echo 
"Prefix: ".$fmt->getTextAttribute(NumberFormatter::NEGATIVE_PREFIX)."\n";
echo 
$fmt->format(-1234567.891234567890000)."\n";
?>

Результат выполнения данного примера:

Prefix: -
-1.234.567,891
Prefix: MINUS
MINUS1.234.567,891

Смотрите также


NumberFormatter::getSymbol

NumberFormatter::parseCurrency

NumberFormatter

PHP Manual

SAPE все усложнил?

MainLink - простая и прибыльная продажа ссылок!

Последние поступления:

Размещена 10 августа 2020 года

Я по ТВ видел, что через 10 лет мы будем жить лучше, чем в Германии...
Я не понял, что это они с Германией сделать хотят?!

читать далее…

ТехЗадание на Землю

Размещена 14 марта 2018 года

Пpоект Genesis (из коpпоpативной пеpеписки)

читать далее…

Шпаргалка по работе с Vim

Размещена 05 декабря 2017 года

Vim довольно мощный редактор, но работа с ним не всегда наглядна.
Например если нужно отредактировать какой-то файл например при помощи crontab, без знания специфики работы с viv никак.

читать далее…

Ошибка: Error: Cannot find a valid baseurl for repo

Размещена 13 сентабря 2017 года

Если возникает ошибка на centos 5 вида
YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
Eg. Invalid release/

читать далее…

Linux Optimization

Размещена 30 июля 2012 года

Prelink

читать далее…