NumberFormatter::setTextAttribute numfmt_set_text_attribute Set a text attribute &reftitle.description; Object oriented style bool NumberFormatter::setTextAttribute intattr stringvalue Procedural style bool numfmt_set_text_attribute NumberFormatterfmt intattr stringvalue Set 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 attribute, U_UNSUPPORTED_ERROR error is produced. Rule-based formatters only understand NumberFormatter::DEFAULT_RULESET and NumberFormatter::PUBLIC_RULESETS. &reftitle.parameters; fmt NumberFormatter object. attr Attribute specifier - one of the text attribute constants. value Text for the attribute value. &reftitle.returnvalues; &return.success; &reftitle.examples; <function>numfmt_set_text_attribute</function> example ]]> OO example 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"; ?> ]]> &example.outputs; &reftitle.seealso; numfmt_get_error_code numfmt_get_text_attribute numfmt_set_attribute