NumberFormatter::getAttribute numfmt_get_attribute Get an attribute &reftitle.description; Object oriented style NumberFormatter integer getAttribute integerattr Procedural style integer numfmt_get_attribute NumberFormatterfmt integerattr Get a numeric attribute associated with the formatter. An example of a numeric attribute is the number of integer digits the formatter will produce. &reftitle.parameters; fmt NumberFormatter object. attr Attribute specifier - one of the numeric attribute constants. &reftitle.returnvalues; Return attribute value on success, or &false; on error. &reftitle.examples; <function>numfmt_get_attribute</function> example ]]> OO example getAttribute(NumberFormatter::MAX_FRACTION_DIGITS)."\n"; echo $fmt->format(1234567.891234567890000)."\n"; $fmt->setAttribute(NumberFormatter::MAX_FRACTION_DIGITS, 2); echo "Digits: ".$fmt->getAttribute(NumberFormatter::MAX_FRACTION_DIGITS)."\n"; echo $fmt->format(1234567.891234567890000)."\n"; ?> ]]> &example.outputs; &reftitle.seealso; numfmt_get_error_code numfmt_get_text_attribute numfmt_set_attribute